summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/fmdrr-fmrrd.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/fmdrr-fmrrd.ll')
-rw-r--r--test/CodeGen/ARM/fmdrr-fmrrd.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/fmdrr-fmrrd.ll b/test/CodeGen/ARM/fmdrr-fmrrd.ll
new file mode 100644
index 000000000000..315e6238732f
--- /dev/null
+++ b/test/CodeGen/ARM/fmdrr-fmrrd.ll
@@ -0,0 +1,13 @@
+; RUN: llvm-as < %s | llc -march=arm -mattr=vfp2 | not grep fmdrr
+; RUN: llvm-as < %s | llc -march=arm -mattr=vfp2 | not grep fmrrd
+
+; naive codegen for this is:
+; _i:
+; fmdrr d0, r0, r1
+; fmrrd r0, r1, d0
+; bx lr
+
+define i64 @test(double %X) {
+ %Y = bitcast double %X to i64
+ ret i64 %Y
+}