aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-03-03 18:58:09 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-03-03 18:58:09 +0000
commite5d5595d36dac19f8bb59ab70e8c394972f5ae21 (patch)
treee9b0a5109b2e9db959fa5467f6d3fdbd37f09e1c /test
parent329b951b69649b434ebf233e76b421c4c5116148 (diff)
downloadexternal_llvm-e5d5595d36dac19f8bb59ab70e8c394972f5ae21.zip
external_llvm-e5d5595d36dac19f8bb59ab70e8c394972f5ae21.tar.gz
external_llvm-e5d5595d36dac19f8bb59ab70e8c394972f5ae21.tar.bz2
Add another test case for instruction scheduling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26507 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/2006-03-02-InstrSchedBug.ll10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll b/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll
new file mode 100644
index 0000000..e9b9946
--- /dev/null
+++ b/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll
@@ -0,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
+}