about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/llvm
diff options
context:
space:
mode:
authorklensy <klensy@users.noreply.github.com>2023-04-08 12:15:26 +0300
committerklensy <klensy@users.noreply.github.com>2023-04-08 12:15:26 +0300
commitfdfca765a71770d743981e71aab01625188328fc (patch)
treee8bb6228a9a3bd8f806674132f596db31336ec27 /compiler/rustc_codegen_llvm/src/llvm
parentc0bc00174f0b033a689a12c108f0abddc3420f9f (diff)
downloadrust-fdfca765a71770d743981e71aab01625188328fc.tar.gz
rust-fdfca765a71770d743981e71aab01625188328fc.zip
fixup: use Bool instead of bool
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/llvm')
-rw-r--r--compiler/rustc_codegen_llvm/src/llvm/ffi.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/llvm/ffi.rs b/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
index dc498f784b3..5b53b4c7c56 100644
--- a/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
+++ b/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
@@ -1626,7 +1626,7 @@ extern "C" {
         B: &Builder<'a>,
         Val: &'a Value,
         DestTy: &'a Type,
-        IsSigned: bool,
+        IsSigned: Bool,
         Name: *const c_char,
     ) -> &'a Value;