Skip to content

Commit 1b06b99

Browse files
committed
temphack: always use fallback impl
1 parent 3eb2e56 commit 1b06b99

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

compiler/rustc_codegen_llvm/src/intrinsic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ impl<'ll, 'tcx> IntrinsicCallBuilderMethods<'tcx> for Builder<'_, 'll, 'tcx> {
195195
| sym::maximum_numberf64
196196
| sym::maximum_numberf128
197197
// Need at least LLVM 22 for `min/maximumnum` to not crash LLVM.
198-
if crate::llvm_util::get_version() >= (22, 0, 0) =>
198+
if crate::llvm_util::get_version() >= (22, 0, 0) && false =>
199199
{
200200
let intrinsic_name = if name.as_str().starts_with("min") {
201201
"llvm.minimumnum"

0 commit comments

Comments
 (0)