aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/2006-03-02-InstrSchedBug.ll')
-rw-r--r--test/CodeGen/X86/2006-03-02-InstrSchedBug.ll11
1 files changed, 11 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..da063df
--- /dev/null
+++ b/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll
@@ -0,0 +1,11 @@
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -stats |& \
+; RUN: 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
+}