aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/avx-bitcast.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/avx-bitcast.ll')
-rw-r--r--test/CodeGen/X86/avx-bitcast.ll13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGen/X86/avx-bitcast.ll b/test/CodeGen/X86/avx-bitcast.ll
deleted file mode 100644
index e34c20fcbd73..000000000000
--- a/test/CodeGen/X86/avx-bitcast.ll
+++ /dev/null
@@ -1,13 +0,0 @@
-; RUN: llc < %s -O0 -mtriple=x86_64-unknown-unknown -mattr=+avx | FileCheck %s
-
-define i64 @bitcasti64tof64() {
-; CHECK-LABEL: bitcasti64tof64:
-; CHECK: # BB#0:
-; CHECK: vmovsd {{.*#+}} xmm0 = mem[0],zero
-; CHECK-NEXT: vmovq %xmm0, %rax
-; CHECK-NEXT: retq
- %a = load double, double* undef
- %b = bitcast double %a to i64
- ret i64 %b
-}
-