Rollup merge of #151405 - heiher:fix-cli, r=Mark-Simulacrum

LoongArch: Fix call-llvm-intrinsics test
This commit is contained in:
Matthias Krüger 2026-01-25 16:27:23 +01:00 committed by GitHub
commit 0de96f455d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,9 +23,7 @@ pub fn do_call() {
unsafe {
// Ensure that we `call` LLVM intrinsics instead of trying to `invoke` them
// CHECK: store float 4.000000e+00, ptr %{{.}}, align 4
// CHECK: load float, ptr %{{.}}, align 4
// CHECK: call float @llvm.sqrt.f32(float %{{.}}
// CHECK: call float @llvm.sqrt.f32(float 4.000000e+00)
sqrt(4.0);
}
}