Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s -march=x86 -mcpu=yonah | not grep movss
      2 ; RUN: llc < %s -march=x86 -mcpu=yonah | not grep xmm
      3 
      4 define double @test1(double* %P) {
      5         %X = load double* %P            ; <double> [#uses=1]
      6         ret double %X
      7 }
      8 
      9 define double @test2() {
     10         ret double 1.234560e+03
     11 }
     12 
     13 
     14 ; FIXME: Todo
     15 ;double %test3(bool %B) {
     16 ;	%C = select bool %B, double 123.412, double 523.01123123
     17 ;	ret double %C
     18 ;}
     19 
     20