Skip to content
  • Bill Wendling's avatar
    Add SplitLandingPadPredecessors(). · ca7d3096
    Bill Wendling authored
    SplitLandingPadPredecessors is similar to SplitBlockPredecessors in that it
    splits the current block and attaches a set of predecessors to the new basic
    block. However, it differs from SplitBlockPredecessors in that it's specifically
    designed to handle landing pad blocks.
    
    Two new basic blocks are created: one that is has the vector of predecessors as
    its predecessors and one that has the remaining predecessors as its
    predecessors. Those two new blocks then receive a cloned copy of the landingpad
    instruction from the original block. The landingpad instructions are joined in a
    PHI, etc. Like SplitBlockPredecessors, it updates the LLVM IR, AliasAnalysis,
    DominatorTree, DominanceFrontier, LoopInfo, and LCCSA analyses.
    
    llvm-svn: 138014
    ca7d3096
Loading