mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
4575ab2186
XFAIL tests covered by the PR. These will be un-XFAILed as they are fixed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36093 91177308-0d34-0410-b5e6-96231b3b80d8
43 lines
943 B
Plaintext
43 lines
943 B
Plaintext
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | \
|
|
; RUN: grep ST | not grep {fadd\\|fsub\\|fdiv\\|fmul}
|
|
; XFAIL: *
|
|
|
|
; Test that the load of the memory location is folded into the operation.
|
|
|
|
|
|
double %test_add(double %X, double *%P) {
|
|
%Y = load double* %P
|
|
%R = add double %X, %Y
|
|
ret double %R
|
|
}
|
|
|
|
double %test_mul(double %X, double *%P) {
|
|
%Y = load double* %P
|
|
%R = mul double %X, %Y
|
|
ret double %R
|
|
}
|
|
|
|
double %test_sub(double %X, double *%P) {
|
|
%Y = load double* %P
|
|
%R = sub double %X, %Y
|
|
ret double %R
|
|
}
|
|
|
|
double %test_subr(double %X, double *%P) {
|
|
%Y = load double* %P
|
|
%R = sub double %Y, %X
|
|
ret double %R
|
|
}
|
|
|
|
double %test_div(double %X, double *%P) {
|
|
%Y = load double* %P
|
|
%R = div double %X, %Y
|
|
ret double %R
|
|
}
|
|
|
|
double %test_divr(double %X, double *%P) {
|
|
%Y = load double* %P
|
|
%R = div double %Y, %X
|
|
ret double %R
|
|
}
|