Skip to content

Commit fb38164

Browse files
committed
LLVMConstStringInContext2 supported in LLVM 19
1 parent 29f57db commit fb38164

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -2079,8 +2079,9 @@ extern "C" bool LLVMRustLLVMHasZstdCompressionForDebugSymbols() {
20792079
// See https://github.com/rust-lang/rust/issues/121868
20802080
// See https://llvm.org/doxygen/group__LLVMCCoreValueConstantComposite.html
20812081

2082-
// FIXME Change version check once patch is accepted into LLVM
2083-
#if LLVM_VERSION_LT(999, 0)
2082+
// FIXME: Remove when RUST's minimum supported LLVM version reaches 19.
2083+
// https://github.com/llvm/llvm-project/commit/e1405e4f71c899420ebf8262d5e9745598419df8
2084+
#if LLVM_VERSION_LT(19, 0)
20842085
extern "C" LLVMValueRef LLVMConstStringInContext2(LLVMContextRef C,
20852086
const char *Str,
20862087
size_t Length,

0 commit comments

Comments
 (0)