new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21304 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-04-15 19:24:36 +00:00
parent 1e0d9bda62
commit ec656f57f4
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,18 @@
; RUN: llvm-as < %s | opt -condprop | llvm-dis | not grep 'br label'
int %test(bool %C) {
br bool %C, label %T1, label %F1
T1:
br label %Cont
F1:
br label %Cont
Cont:
%C2 = phi bool [false, %F1], [true, %T1]
br bool %C2, label %T2, label %F2
T2:
call void %bar()
ret int 17
F2:
ret int 1
}
declare void %bar()

View File

@ -0,0 +1,3 @@
load_lib llvm-dg.exp
llvm-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]] $objdir $srcdir $subdir $target_triplet $llvmgcc $llvmgxx $prcontext