summaryrefslogtreecommitdiffstats
path: root/src/test/assembly/x86_64-floating-point-clamp.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/assembly/x86_64-floating-point-clamp.rs')
-rw-r--r--src/test/assembly/x86_64-floating-point-clamp.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/test/assembly/x86_64-floating-point-clamp.rs b/src/test/assembly/x86_64-floating-point-clamp.rs
deleted file mode 100644
index 0f3b465d0..000000000
--- a/src/test/assembly/x86_64-floating-point-clamp.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-// Floating-point clamp is designed to be implementable as max+min,
-// so check to make sure that's what it's actually emitting.
-
-// assembly-output: emit-asm
-// compile-flags: --crate-type=lib -O -C llvm-args=-x86-asm-syntax=intel
-// only-x86_64
-
-// CHECK-LABEL: clamp_demo:
-#[no_mangle]
-pub fn clamp_demo(a: f32, x: f32, y: f32) -> f32 {
- // CHECK: maxss
- // CHECK: minss
- a.clamp(x, y)
-}
-
-// CHECK-LABEL: clamp12_demo:
-#[no_mangle]
-pub fn clamp12_demo(a: f32) -> f32 {
- // CHECK: movss xmm1
- // CHECK-NEXT: maxss xmm1, xmm0
- // CHECK-NEXT: movss xmm0
- // CHECK-NEXT: minss xmm0, xmm1
- // CHECK: ret
- a.clamp(1.0, 2.0)
-}