llvm-6502/test/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
}