Displaying 1 result from an estimated 1 matches for "myblock".
Did you mean:
pyblock
2005 Mar 30
1
[LLVMdev] Branch simplification
Hi,
I have a CFG built by LLVM with blocks that look like this:
myBlock: ; preds = %predA, %predB
%cond = phi bool [ false, %predA ], [ %otherCond, %predB ]
br bool %cond, %succA, %succB
Is there a pass or sequence of passes that will see the constant
'false' in the PHI instruction and change the target of %predA to
point directly to %succB? I...