blob: eb72faf8d811b180181d31014f81fc5932155d71 [file] [log] [blame]
; 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
}