diff options
author | Chris Lattner <sabre@nondot.org> | 2009-12-30 05:54:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-12-30 05:54:51 +0000 |
commit | c17e2849d10a961abf7183222baab31d84e3990f (patch) | |
tree | 002f8eff16440086a7f712770abaf854fcceea6f /test/Transforms/SimplifyCFG/duplicate-phis.ll | |
parent | 1340dd37087c1d47a85a4461a8d33cd6ccbcfaaf (diff) | |
download | external_llvm-c17e2849d10a961abf7183222baab31d84e3990f.zip external_llvm-c17e2849d10a961abf7183222baab31d84e3990f.tar.gz external_llvm-c17e2849d10a961abf7183222baab31d84e3990f.tar.bz2 |
fix two bogus tests that the asmparser now rejects.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92303 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/SimplifyCFG/duplicate-phis.ll')
-rw-r--r-- | test/Transforms/SimplifyCFG/duplicate-phis.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/SimplifyCFG/duplicate-phis.ll b/test/Transforms/SimplifyCFG/duplicate-phis.ll index a1e5113..5129f9f 100644 --- a/test/Transforms/SimplifyCFG/duplicate-phis.ll +++ b/test/Transforms/SimplifyCFG/duplicate-phis.ll @@ -6,7 +6,7 @@ define i32 @foo(i1 %t) { entry: call void @bar() - br i1 %t, label %true, label %false, + br i1 %t, label %true, label %false true: call void @bar() br label %false |