aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2011-06-14-PreschedRegalias.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/2011-06-14-PreschedRegalias.ll')
-rw-r--r--test/CodeGen/X86/2011-06-14-PreschedRegalias.ll18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/CodeGen/X86/2011-06-14-PreschedRegalias.ll b/test/CodeGen/X86/2011-06-14-PreschedRegalias.ll
deleted file mode 100644
index c9b3df83613d..000000000000
--- a/test/CodeGen/X86/2011-06-14-PreschedRegalias.ll
+++ /dev/null
@@ -1,18 +0,0 @@
-; RUN: llc < %s -march=x86-64 -stress-sched | FileCheck %s
-; REQUIRES: asserts
-; Test interference between physreg aliases during preRAsched.
-; mul wants an operand in AL, but call clobbers it.
-
-define i8 @f(i8 %v1, i8 %v2) nounwind {
-entry:
-; CHECK: callq
-; CHECK: movl %{{.*}}, %eax
-; CHECK: mulb
-; CHECK: mulb
- %rval = tail call i8 @bar() nounwind
- %m1 = mul i8 %v1, %v2
- %m2 = mul i8 %m1, %rval
- ret i8 %m2
-}
-
-declare i8 @bar()