llvm-6502/test/Transforms/SimplifyCFG/2002-09-24-PHIAssertion.ll
2003-09-16 15:29:54 +00:00

13 lines
266 B
LLVM

; RUN: llvm-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
}