Skip to content

Commit 0de96f4

Browse files
authored
Rollup merge of #151405 - heiher:fix-cli, r=Mark-Simulacrum
LoongArch: Fix call-llvm-intrinsics test
2 parents f6a8326 + d977471 commit 0de96f4

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/codegen-llvm/loongarch-abi/call-llvm-intrinsics.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ pub fn do_call() {
2323

2424
unsafe {
2525
// Ensure that we `call` LLVM intrinsics instead of trying to `invoke` them
26-
// CHECK: store float 4.000000e+00, ptr %{{.}}, align 4
27-
// CHECK: load float, ptr %{{.}}, align 4
28-
// CHECK: call float @llvm.sqrt.f32(float %{{.}}
26+
// CHECK: call float @llvm.sqrt.f32(float 4.000000e+00)
2927
sqrt(4.0);
3028
}
3129
}

0 commit comments

Comments
 (0)