[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/fabs.ll

Evan Cheng evan.cheng at apple.com
Tue Aug 29 15:01:53 PDT 2006



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

fabs.ll updated: 1.8 -> 1.9
---
Log message:

This is also a 32-bit only test. x86-64 would pass fp parameters through XMM registers.

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

 fabs.ll |    3 +++
 1 files changed, 3 insertions(+)


Index: llvm/test/Regression/CodeGen/X86/fabs.ll
diff -u llvm/test/Regression/CodeGen/X86/fabs.ll:1.8 llvm/test/Regression/CodeGen/X86/fabs.ll:1.9
--- llvm/test/Regression/CodeGen/X86/fabs.ll:1.8	Tue May 23 19:49:32 2006
+++ llvm/test/Regression/CodeGen/X86/fabs.ll	Tue Aug 29 17:01:39 2006
@@ -2,6 +2,9 @@
 ; RUN: llvm-as < %s | llc -march=x86 -mattr=-sse2,-sse3 | grep 'fabs$' | wc -l | grep 1 && 
 ; RUN: llvm-as < %s | llc -march=x86 -mattr=-sse2,-sse3 -enable-unsafe-fp-math  | grep 'fabs$' | wc -l | grep 2
 
+target endian = little
+target pointersize = 32
+
 declare float %fabsf(float)
 
 float %fabsftest(float %X) {






More information about the llvm-commits mailing list