diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-02-26 16:06:02 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-26 16:06:02 +0100 | 
| commit | 6700714394d6f30af68bd8386d3468319293ea8f (patch) | |
| tree | b481d9d3a99dca7b9ee5e0e8933c1d2629e7de73 /compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp | |
| parent | b8de591b6556836633e0c1bce1f42b90801f4227 (diff) | |
| parent | 0ce966fd6415773698fd9f85a86ef49dd4225ecf (diff) | |
| download | rust-6700714394d6f30af68bd8386d3468319293ea8f.tar.gz rust-6700714394d6f30af68bd8386d3468319293ea8f.zip | |
Rollup merge of #121389 - klensy:llvm-warn-fix, r=nikic
llvm-wrapper: fix few warnings Two fixes: first one is simple unsigned -> uint64_t, but how second one is more subtile, see commit description.
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp')
| -rw-r--r-- | compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp index af2353fbb19..cb7cce4da0d 100644 --- a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp +++ b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp @@ -1262,7 +1262,7 @@ enum class LLVMRustDiagnosticLevel { extern "C" void LLVMRustUnpackInlineAsmDiagnostic(LLVMDiagnosticInfoRef DI, LLVMRustDiagnosticLevel *LevelOut, - unsigned *CookieOut, + uint64_t *CookieOut, LLVMTwineRef *MessageOut) { // Undefined to call this not on an inline assembly diagnostic! llvm::DiagnosticInfoInlineAsm *IA = | 
