mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-06 04:09:04 +00:00
9 lines
166 B
LLVM
9 lines
166 B
LLVM
|
|
|
|
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
|
|
}
|