[llvm-commits] CVS: llvm/test/Regression/CodeGen/ARM/fparith.ll

Rafael Espindola rafael.espindola at gmail.com
Tue Oct 17 13:33:29 PDT 2006



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)






More information about the llvm-commits mailing list