Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s -mtriple=i686-apple-darwin -mattr=+sse2 | FileCheck %s
      2 ; CHECK: movsd
      3 ; CHECK-NOT: mov
      4 
      5 define i32 @foo() nounwind {
      6 entry:
      7 	tail call fastcc void @bar( double 1.000000e+00 ) nounwind
      8 	ret i32 0
      9 }
     10 
     11 declare fastcc void @bar(double)
     12