Changes in directory llvm/test/Regression/CodeGen/ARM:

fparith.ll updated: 1.4 -> 1.5
---
Log message:

add FABSS and FABSD


---
Diffs of the changes:  (+16 -0)

 fparith.ll |   16 ++++++++++++++++
 1 files changed, 16 insertions(+)


Index: llvm/test/Regression/CodeGen/ARM/fparith.ll
diff -u llvm/test/Regression/CodeGen/ARM/fparith.ll:1.4 
llvm/test/Regression/CodeGen/ARM/fparith.ll:1.5
--- llvm/test/Regression/CodeGen/ARM/fparith.ll:1.4     Mon Oct 16 16:50:04 2006
+++ llvm/test/Regression/CodeGen/ARM/fparith.ll Tue Oct 17 15:33:13 2006
@@ -67,3 +67,19 @@
        %tmp1 = div double %a, %b
        ret double %tmp1
 }
+
+float %f11(float %a) {
+entry:
+       %tmp1 = call float %fabsf(float %a)
+       ret float %tmp1
+}
+
+declare float %fabsf(float)
+
+double %f12(double %a) {
+entry:
+       %tmp1 = call double %fabs(double %a)
+       ret double %tmp1
+}
+
+declare double %fabs(double)



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to