mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-02 00:16:25 +00:00
New testcases for verifier
llvm-svn: 2763
This commit is contained in:
parent
d3327b19e0
commit
e3e59c6e97
8
test/Regression/Verifier/AmbiguousPhi.ll
Normal file
8
test/Regression/Verifier/AmbiguousPhi.ll
Normal file
@ -0,0 +1,8 @@
|
||||
|
||||
|
||||
int "test"(int %i, int %j, bool %c) {
|
||||
br bool %c, label %A, label %A
|
||||
A:
|
||||
%a = phi int [%i, %0], [%j, %0] ; Error, different values from same block!
|
||||
ret int %a
|
||||
}
|
15
test/Regression/Verifier/PhiGrouping.ll
Normal file
15
test/Regression/Verifier/PhiGrouping.ll
Normal file
@ -0,0 +1,15 @@
|
||||
|
||||
|
||||
int "test"(int %i, int %j, bool %c) {
|
||||
br bool %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
|
||||
}
|
Loading…
Reference in New Issue
Block a user