2007-04-15 22:20:47 +00:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | \
|
2007-04-16 14:20:28 +00:00
|
|
|
; RUN: grep -i ST | not grep {fadd\\|fsub\\|fdiv\\|fmul}
|
2004-04-11 20:24:01 +00:00
|
|
|
|
|
|
|
; Test that the load of the constant is folded into the operation.
|
|
|
|
|
|
|
|
double %test_add(double %P) {
|
|
|
|
%tmp.1 = add double %P, 0x405EC00000000000
|
|
|
|
ret double %tmp.1
|
|
|
|
}
|
|
|
|
|
|
|
|
double %test_mul(double %P) {
|
|
|
|
%tmp.1 = mul double %P, 0x405EC00000000000
|
|
|
|
ret double %tmp.1
|
|
|
|
}
|
|
|
|
|
|
|
|
double %test_sub(double %P) {
|
|
|
|
%tmp.1 = sub double %P, 0x405EC00000000000
|
|
|
|
ret double %tmp.1
|
|
|
|
}
|
|
|
|
|
|
|
|
double %test_subr(double %P) {
|
|
|
|
%tmp.1 = sub double 0x405EC00000000000, %P
|
|
|
|
ret double %tmp.1
|
|
|
|
}
|
|
|
|
|
|
|
|
double %test_div(double %P) {
|
|
|
|
%tmp.1 = div double %P, 0x405EC00000000000
|
|
|
|
ret double %tmp.1
|
|
|
|
}
|
|
|
|
|
|
|
|
double %test_divr(double %P) {
|
|
|
|
%tmp.1 = div double 0x405EC00000000000, %P
|
|
|
|
ret double %tmp.1
|
|
|
|
}
|
|
|
|
|