aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2002-12-23-LocalRAProblem.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/2002-12-23-LocalRAProblem.ll')
-rw-r--r--test/CodeGen/X86/2002-12-23-LocalRAProblem.ll15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/CodeGen/X86/2002-12-23-LocalRAProblem.ll b/test/CodeGen/X86/2002-12-23-LocalRAProblem.ll
deleted file mode 100644
index 418196b2aa..0000000000
--- a/test/CodeGen/X86/2002-12-23-LocalRAProblem.ll
+++ /dev/null
@@ -1,15 +0,0 @@
-; RUN: llc < %s -march=x86 -regalloc=simple
-
-define i32 @main() {
- ; %A = 0
- %A = add i32 0, 0 ; <i32> [#uses=1]
- ; %B = 1
- %B = add i32 0, 1 ; <i32> [#uses=2]
- br label %bb1
-bb1: ; preds = %0
- ; %X = 0*1 = 0
- %X = mul i32 %A, %B ; <i32> [#uses=0]
- ; %r = 0
- %R = sub i32 %B, 1 ; <i32> [#uses=1]
- ret i32 %R
-}