mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
dbd1588a36
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12837 91177308-0d34-0410-b5e6-96231b3b80d8
35 lines
814 B
Plaintext
35 lines
814 B
Plaintext
; RUN: llvm-as < %s | llc -march=x86 | grep ST | not grep 'fadd\|fsub\|fdiv\|fmul'
|
|
|
|
; 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
|
|
}
|
|
|