xref: /aosp_15_r20/external/llvm/test/CodeGen/X86/sse-load-ret.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: llc < %s -march=x86 -mcpu=yonah | not grep movss
2; RUN: llc < %s -march=x86 -mcpu=yonah | not grep xmm
3
4define double @test1(double* %P) {
5        %X = load double, double* %P            ; <double> [#uses=1]
6        ret double %X
7}
8
9define 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