[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/2006-03-02-InstrSchedBug.ll
Evan Cheng
evan.cheng at apple.com
Fri Mar 3 10:58:22 PST 2006
Changes in directory llvm/test/Regression/CodeGen/X86:
2006-03-02-InstrSchedBug.ll added (r1.1)
---
Log message:
Add another test case for instruction scheduling.
---
Diffs of the changes: (+10 -0)
2006-03-02-InstrSchedBug.ll | 10 ++++++++++
1 files changed, 10 insertions(+)
Index: llvm/test/Regression/CodeGen/X86/2006-03-02-InstrSchedBug.ll
diff -c /dev/null llvm/test/Regression/CodeGen/X86/2006-03-02-InstrSchedBug.ll:1.1
*** /dev/null Fri Mar 3 12:58:19 2006
--- llvm/test/Regression/CodeGen/X86/2006-03-02-InstrSchedBug.ll Fri Mar 3 12:58:09 2006
***************
*** 0 ****
--- 1,10 ----
+ ; RUN: llvm-as < %s | llc -march=x86 -stats 2>&1 | grep 'asm-printer' | grep 7
+
+ int %g(int %a, int %b) {
+ %tmp.1 = shl int %b, ubyte 1
+ %tmp.3 = add int %tmp.1, %a
+ %tmp.5 = mul int %tmp.3, %a
+ %tmp.8 = mul int %b, %b
+ %tmp.9 = add int %tmp.5, %tmp.8
+ ret int %tmp.9
+ }
More information about the llvm-commits
mailing list