commit testcase I forgot to svn add.

llvm-svn: 44383
This commit is contained in:
Chris Lattner 2007-11-27 22:43:37 +00:00
parent 57662f3882
commit f247e27666
1 changed files with 13 additions and 0 deletions

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
}