1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression/Transforms/SimplifyCFG/2002-09-24-PHIAssertion.ll
2002-09-24 16:02:44 +00:00

13 lines
261 B
LLVM

; RUN: as < %s | opt -simplifycfg
int %test(int %A, int %B, bool %cond) {
J:
%C = add int %A, 12
br bool %cond, label %L, label %L
L:
%Q = phi int [%C, %J], [%C, %J] ; PHI node is obviously redundant
%D = add int %C, %B
%E = add int %Q, %D
ret int %E
}