llvm-6502/test/CodeGen/ARM/fmdrr-fmrrd.ll
2009-09-09 00:09:15 +00:00

14 lines
305 B
LLVM

; RUN: llc < %s -march=arm -mattr=vfp2 | not grep fmdrr
; RUN: llc < %s -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
}