commit testcase I forgot to svn add.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44383 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-11-27 22:43:37 +00:00
parent a3f61df4ff
commit a5d4a4e33e

View File

@ -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
}