[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/2007-01-08-InstrSched.ll
Evan Cheng
evan.cheng at apple.com
Mon Jan 8 15:58:42 PST 2007
Changes in directory llvm/test/Regression/CodeGen/X86:
2007-01-08-InstrSched.ll added (r1.1)
---
Log message:
Added a test case from PR1075: http://llvm.org/PR1075 .
---
Diffs of the changes: (+13 -0)
2007-01-08-InstrSched.ll | 13 +++++++++++++
1 files changed, 13 insertions(+)
Index: llvm/test/Regression/CodeGen/X86/2007-01-08-InstrSched.ll
diff -c /dev/null llvm/test/Regression/CodeGen/X86/2007-01-08-InstrSched.ll:1.1
*** /dev/null Mon Jan 8 17:58:37 2007
--- llvm/test/Regression/CodeGen/X86/2007-01-08-InstrSched.ll Mon Jan 8 17:58:27 2007
***************
*** 0 ****
--- 1,13 ----
+ ; RUN: llvm-as < %s | llvm-as | llc -mtriple=x86_64-apple-darwin | \
+ ; RUN: %prcontext 'mulss LCPI1_3' 1 | grep mulss | wc -l | grep 1
+
+ define float %foo(float %x) {
+ %tmp1 = mul float %x, 3.000000e+00
+ %tmp3 = mul float %x, 5.000000e+00
+ %tmp5 = mul float %x, 7.000000e+00
+ %tmp7 = mul float %x, 1.100000e+01
+ %tmp10 = add float %tmp1, %tmp3
+ %tmp12 = add float %tmp10, %tmp5
+ %tmp14 = add float %tmp12, %tmp7
+ ret float %tmp14
+ }
More information about the llvm-commits
mailing list