summaryrefslogtreecommitdiff
path: root/test/Verifier/PhiGrouping.ll
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2008-03-16 07:55:46 +0000
committerNick Lewycky <nicholas@mxc.ca>2008-03-16 07:55:46 +0000
commit3f63785cc6a89e251855a8dad4fa7b1f2ea189cd (patch)
tree281460d4620184811b7c2d0f62036ff6059d62ad /test/Verifier/PhiGrouping.ll
parent917a5d94253cead6e6e6279d92b1191ebd90d602 (diff)
downloadllvm-3f63785cc6a89e251855a8dad4fa7b1f2ea189cd.tar.gz
llvm-3f63785cc6a89e251855a8dad4fa7b1f2ea189cd.tar.bz2
llvm-3f63785cc6a89e251855a8dad4fa7b1f2ea189cd.tar.xz
All of these tests had out of date syntax and were never even running through
llvm-upgrade because nobody noticed them failing. Update to use new syntax and actually check for the right failure by looking at the error message. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48417 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Verifier/PhiGrouping.ll')
-rw-r--r--test/Verifier/PhiGrouping.ll14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/Verifier/PhiGrouping.ll b/test/Verifier/PhiGrouping.ll
index aa1203b73a..dc529dced3 100644
--- a/test/Verifier/PhiGrouping.ll
+++ b/test/Verifier/PhiGrouping.ll
@@ -1,17 +1,17 @@
-; RUN: not llvm-as -f %s -o /dev/null
+; RUN: not llvm-as < %s |& grep {PHI nodes not grouped at top}
-int "test"(int %i, int %j, bool %c) {
- br bool %c, label %A, label %B
+define i32 @test(i32 %i, i32 %j, i1 %c) {
+ br i1 %c, label %A, label %B
A:
br label %C
B:
br label %C
C:
- %a = phi int [%i, %A], [%j, %B]
- %x = add int %a, 0 ; Error, PHI's should be grouped!
- %b = phi int [%i, %A], [%j, %B]
- ret int %x
+ %a = phi i32 [%i, %A], [%j, %B]
+ %x = add i32 %a, 0 ; Error, PHI's should be grouped!
+ %b = phi i32 [%i, %A], [%j, %B]
+ ret i32 %x
}