aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/fabs.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/fabs.ll')
-rw-r--r--test/CodeGen/X86/fabs.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/fabs.ll b/test/CodeGen/X86/fabs.ll
index 68f892fa99..ce28c6de8a 100644
--- a/test/CodeGen/X86/fabs.ll
+++ b/test/CodeGen/X86/fabs.ll
@@ -7,12 +7,12 @@ target pointersize = 32
declare float %fabsf(float)
-float %fabsftest(float %X) {
+float %test1(float %X) {
%Y = call float %fabsf(float %X)
ret float %Y
}
-double %fabstest2(double %X) {
+double %test2(double %X) {
%Y = setge double %X, -0.0
%Z = sub double -0.0, %X
%Q = select bool %Y, double %X, double %Z