mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
4572ce85b0
llvm-svn: 33296
18 lines
297 B
LLVM
18 lines
297 B
LLVM
; RUN: not llvm-as -f %s -o /dev/null
|
|
|
|
|
|
|
|
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
|
|
}
|