mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21016 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b7edaa1d08
commit
597f22f6cd
26
test/CodeGen/Generic/fneg-fabs.ll
Normal file
26
test/CodeGen/Generic/fneg-fabs.ll
Normal file
@ -0,0 +1,26 @@
|
||||
; RUN: llvm-as < %s | llc
|
||||
|
||||
double %fneg(double %X) {
|
||||
%Y = sub double -0.0, %X
|
||||
ret double %Y
|
||||
}
|
||||
|
||||
float %fnegf(float %X) {
|
||||
%Y = sub float -0.0, %X
|
||||
ret float %Y
|
||||
}
|
||||
|
||||
declare double %fabs(double)
|
||||
declare float %fabsf(float)
|
||||
|
||||
|
||||
double %fabstest(double %X) {
|
||||
%Y = call double %fabs(double %X)
|
||||
ret double %Y
|
||||
}
|
||||
|
||||
float %fabsftest(float %X) {
|
||||
%Y = call float %fabsf(float %X)
|
||||
ret float %Y
|
||||
}
|
||||
|
10
test/CodeGen/X86/fabs.ll
Normal file
10
test/CodeGen/X86/fabs.ll
Normal file
@ -0,0 +1,10 @@
|
||||
; Make sure this testcase codegens to the fabs instruction, not a call to fabsf
|
||||
; RUN: llvm-as < %s | llc -disable-pattern-isel=0 | grep 'fabs$'
|
||||
|
||||
declare float %fabsf(float)
|
||||
|
||||
float %fabsftest(float %X) {
|
||||
%Y = call float %fabsf(float %X)
|
||||
ret float %Y
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user