Skip to content

Commit a958f61

Browse files
authored
Unrolled build for rust-lang#121389
Rollup merge of rust-lang#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.
2 parents b79db43 + 0ce966f commit a958f61

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

compiler/rustc_codegen_llvm/src/back/write.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use rustc_span::InnerSpan;
3636
use rustc_target::spec::{CodeModel, RelocModel, SanitizerSet, SplitDebuginfo, TlsModel};
3737

3838
use crate::llvm::diagnostic::OptimizationDiagnosticKind;
39-
use libc::{c_char, c_int, c_uint, c_void, size_t};
39+
use libc::{c_char, c_int, c_void, size_t};
4040
use std::ffi::CString;
4141
use std::fs;
4242
use std::io::{self, Write};
@@ -406,7 +406,7 @@ fn report_inline_asm(
406406
cgcx: &CodegenContext<LlvmCodegenBackend>,
407407
msg: String,
408408
level: llvm::DiagnosticLevel,
409-
mut cookie: c_uint,
409+
mut cookie: u64,
410410
source: Option<(String, Vec<InnerSpan>)>,
411411
) {
412412
// In LTO build we may get srcloc values from other crates which are invalid
@@ -420,7 +420,7 @@ fn report_inline_asm(
420420
llvm::DiagnosticLevel::Warning => Level::Warning,
421421
llvm::DiagnosticLevel::Note | llvm::DiagnosticLevel::Remark => Level::Note,
422422
};
423-
cgcx.diag_emitter.inline_asm_error(cookie as u32, msg, level, source);
423+
cgcx.diag_emitter.inline_asm_error(cookie.try_into().unwrap(), msg, level, source);
424424
}
425425

426426
unsafe extern "C" fn diagnostic_handler(info: &DiagnosticInfo, user: *mut c_void) {

compiler/rustc_codegen_llvm/src/llvm/diagnostic.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ impl SrcMgrDiagnostic {
123123
#[derive(Clone)]
124124
pub struct InlineAsmDiagnostic {
125125
pub level: super::DiagnosticLevel,
126-
pub cookie: c_uint,
126+
pub cookie: u64,
127127
pub message: String,
128128
pub source: Option<(String, Vec<InnerSpan>)>,
129129
}
@@ -149,7 +149,7 @@ impl InlineAsmDiagnostic {
149149
let smdiag = SrcMgrDiagnostic::unpack(super::LLVMRustGetSMDiagnostic(di, &mut cookie));
150150
InlineAsmDiagnostic {
151151
level: smdiag.level,
152-
cookie,
152+
cookie: cookie.into(),
153153
message: smdiag.message,
154154
source: smdiag.source,
155155
}

compiler/rustc_codegen_llvm/src/llvm/ffi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2256,7 +2256,7 @@ extern "C" {
22562256
pub fn LLVMRustUnpackInlineAsmDiagnostic<'a>(
22572257
DI: &'a DiagnosticInfo,
22582258
level_out: &mut DiagnosticLevel,
2259-
cookie_out: &mut c_uint,
2259+
cookie_out: &mut u64,
22602260
message_out: &mut Option<&'a Twine>,
22612261
);
22622262

compiler/rustc_llvm/llvm-wrapper/ArchiveWrapper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ typedef RustArchiveIterator *LLVMRustArchiveIteratorRef;
6767

6868
extern "C" LLVMRustArchiveRef LLVMRustOpenArchive(char *Path) {
6969
ErrorOr<std::unique_ptr<MemoryBuffer>> BufOr =
70-
MemoryBuffer::getFile(Path, -1, false);
70+
MemoryBuffer::getFile(Path, /*IsText*/false, /*RequiresNullTerminator=*/false);
7171
if (!BufOr) {
7272
LLVMRustSetLastError(BufOr.getError().message().c_str());
7373
return nullptr;

compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1262,7 +1262,7 @@ enum class LLVMRustDiagnosticLevel {
12621262
extern "C" void
12631263
LLVMRustUnpackInlineAsmDiagnostic(LLVMDiagnosticInfoRef DI,
12641264
LLVMRustDiagnosticLevel *LevelOut,
1265-
unsigned *CookieOut,
1265+
uint64_t *CookieOut,
12661266
LLVMTwineRef *MessageOut) {
12671267
// Undefined to call this not on an inline assembly diagnostic!
12681268
llvm::DiagnosticInfoInlineAsm *IA =

0 commit comments

Comments
 (0)