We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29f57db commit fb38164Copy full SHA for fb38164
compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp
@@ -2079,8 +2079,9 @@ extern "C" bool LLVMRustLLVMHasZstdCompressionForDebugSymbols() {
2079
// See https://github.com/rust-lang/rust/issues/121868
2080
// See https://llvm.org/doxygen/group__LLVMCCoreValueConstantComposite.html
2081
2082
-// FIXME Change version check once patch is accepted into LLVM
2083
-#if LLVM_VERSION_LT(999, 0)
+// FIXME: Remove when RUST's minimum supported LLVM version reaches 19.
+// https://github.com/llvm/llvm-project/commit/e1405e4f71c899420ebf8262d5e9745598419df8
2084
+#if LLVM_VERSION_LT(19, 0)
2085
extern "C" LLVMValueRef LLVMConstStringInContext2(LLVMContextRef C,
2086
const char *Str,
2087
size_t Length,
0 commit comments