diff options
| author | klensy <klensy@users.noreply.github.com> | 2023-04-08 12:15:26 +0300 |
|---|---|---|
| committer | klensy <klensy@users.noreply.github.com> | 2023-04-08 12:15:26 +0300 |
| commit | fdfca765a71770d743981e71aab01625188328fc (patch) | |
| tree | e8bb6228a9a3bd8f806674132f596db31336ec27 /compiler/rustc_codegen_llvm/src/llvm | |
| parent | c0bc00174f0b033a689a12c108f0abddc3420f9f (diff) | |
| download | rust-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.rs | 2 |
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; |
