]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_codegen_llvm/src/type_.rs
Rollup merge of #104936 - cjgillot:self-rpit-orig-too, r=oli-obk
[rust.git] / compiler / rustc_codegen_llvm / src / type_.rs
index 5eec7dc613028e3e25f6a50296399f20a6d8f34d..5772b7e1d812afa3c2566ecb3fd31e042e078f80 100644 (file)
@@ -238,7 +238,7 @@ pub fn i8_llcx(llcx: &llvm::Context) -> &Type {
         unsafe { llvm::LLVMInt8TypeInContext(llcx) }
     }
 
-    // Creates an integer type with the given number of bits, e.g., i24
+    /// Creates an integer type with the given number of bits, e.g., i24
     pub fn ix_llcx(llcx: &llvm::Context, num_bits: u64) -> &Type {
         unsafe { llvm::LLVMIntTypeInContext(llcx, num_bits as c_uint) }
     }