Remove test cases using -regalloc=simple.

llvm-svn: 82130
This commit is contained in:
Daniel Dunbar 2009-09-17 06:37:07 +00:00
parent 687fa86a30
commit 94cb6144d2
2 changed files with 0 additions and 22 deletions

View File

@ -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
}

View File

@ -1,7 +0,0 @@
; RUN: llc < %s -march=x86 -regalloc=simple
define i32 @main(i32 %B) {
;%B = add i32 0, 1;
%R = sub i32 %B, 1 ; %r = 0
ret i32 %R
}