1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 15:32:52 +01:00
llvm-mirror/test/Regression/Verifier/AmbiguousPhi.ll

11 lines
205 B
LLVM
Raw Normal View History

2004-11-07 00:08:26 +01:00
; RUN: not llvm-as -f %s -o /dev/null
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
}