llvm-6502/test/Transforms/SimplifyCFG/2002-09-24-PHIAssertion.ll
2006-12-02 04:23:10 +00:00

13 lines
281 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | 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
}