Temporarily revert r58979 and related patch. It's causing a failure in X86 bootstrap:
[oota-llvm.git] / test / CodeGen / X86 / sse-load-ret.ll
1 ; RUN: llvm-as < %s | \
2 ; RUN:   llc -march=x86 -mcpu=yonah | not grep movss
3 ; RUN: llvm-as < %s | \
4 ; RUN:   llc -march=x86 -mcpu=yonah | not grep xmm
5
6 define double @test1(double* %P) {
7         %X = load double* %P            ; <double> [#uses=1]
8         ret double %X
9 }
10
11 define double @test2() {
12         ret double 1.234560e+03
13 }
14
15
16 ; FIXME: Todo
17 ;double %test3(bool %B) {
18 ;       %C = select bool %B, double 123.412, double 523.01123123
19 ;       ret double %C
20 ;}
21