Skip to content

Commit cb1ccc1

Browse files
authored
Rollup merge of #127654 - nikic:llvm-ndebug-fix, r=cuviper
Fix incorrect NDEBUG handling in LLVM bindings We currently compile our LLVM bindings using `-DNDEBUG` if debuginfo for LLVM is disabled. However, `NDEBUG` doesn't have any relation to debuginfo, it controls whether assertions are enabled. Split the LLVM_NDEBUG environment variable into two, so that assertions and debuginfo are controlled independently. After this change, `LLVMRustDIBuilderInsertDeclareAtEnd` triggers an assertion failure on LLVM 19 due to an incorrect cast. Fix it by removing the unused return value entirely. r? `@cuviper`
2 parents 03c2100 + 8dfd3a4 commit cb1ccc1

File tree

4 files changed

+10
-16
lines changed

4 files changed

+10
-16
lines changed

compiler/rustc_codegen_llvm/src/llvm/ffi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2057,7 +2057,7 @@ extern "C" {
20572057
AddrOpsCount: c_uint,
20582058
DL: &'a DILocation,
20592059
InsertAtEnd: &'a BasicBlock,
2060-
) -> &'a Value;
2060+
);
20612061

20622062
pub fn LLVMRustDIBuilderCreateEnumerator<'a>(
20632063
Builder: &DIBuilder<'a>,

compiler/rustc_llvm/build.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,8 @@ fn main() {
197197
cfg.define("LLVM_RUSTLLVM", None);
198198
}
199199

200-
if tracked_env_var_os("LLVM_NDEBUG").is_some() {
200+
if tracked_env_var_os("LLVM_ASSERTIONS").is_none() {
201201
cfg.define("NDEBUG", None);
202-
cfg.debug(false);
203202
}
204203

205204
rerun_if_changed_anything_in_dir(Path::new("llvm-wrapper"));

compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp

+6-11
Original file line numberDiff line numberDiff line change
@@ -1137,20 +1137,15 @@ LLVMRustDIBuilderGetOrCreateArray(LLVMRustDIBuilderRef Builder,
11371137
Builder->getOrCreateArray(ArrayRef<Metadata *>(DataValue, Count)).get());
11381138
}
11391139

1140-
extern "C" LLVMValueRef LLVMRustDIBuilderInsertDeclareAtEnd(
1140+
extern "C" void LLVMRustDIBuilderInsertDeclareAtEnd(
11411141
LLVMRustDIBuilderRef Builder, LLVMValueRef V, LLVMMetadataRef VarInfo,
11421142
uint64_t *AddrOps, unsigned AddrOpsCount, LLVMMetadataRef DL,
11431143
LLVMBasicBlockRef InsertAtEnd) {
1144-
auto Result = Builder->insertDeclare(
1145-
unwrap(V), unwrap<DILocalVariable>(VarInfo),
1146-
Builder->createExpression(
1147-
llvm::ArrayRef<uint64_t>(AddrOps, AddrOpsCount)),
1148-
DebugLoc(cast<MDNode>(unwrap(DL))), unwrap(InsertAtEnd));
1149-
#if LLVM_VERSION_GE(19, 0)
1150-
return wrap(Result.get<llvm::Instruction *>());
1151-
#else
1152-
return wrap(Result);
1153-
#endif
1144+
Builder->insertDeclare(unwrap(V), unwrap<DILocalVariable>(VarInfo),
1145+
Builder->createExpression(
1146+
llvm::ArrayRef<uint64_t>(AddrOps, AddrOpsCount)),
1147+
DebugLoc(cast<MDNode>(unwrap(DL))),
1148+
unwrap(InsertAtEnd));
11541149
}
11551150

11561151
extern "C" LLVMMetadataRef LLVMRustDIBuilderCreateEnumerator(

src/bootstrap/src/core/build_steps/compile.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1213,8 +1213,8 @@ fn rustc_llvm_env(builder: &Builder<'_>, cargo: &mut Cargo, target: TargetSelect
12131213
if builder.config.llvm_use_libcxx {
12141214
cargo.env("LLVM_USE_LIBCXX", "1");
12151215
}
1216-
if builder.config.llvm_optimize && !builder.config.llvm_release_debuginfo {
1217-
cargo.env("LLVM_NDEBUG", "1");
1216+
if builder.config.llvm_assertions {
1217+
cargo.env("LLVM_ASSERTIONS", "1");
12181218
}
12191219
}
12201220

0 commit comments

Comments
 (0)