Skip to content
  • Hal Finkel's avatar
    UpdatePHINodes in BasicBlockUtils should not crash on duplicate predecessors · f5a3eaea
    Hal Finkel authored
    UpdatePHINodes has an optimization to reuse an existing PHI node, where it
    first deletes all of its entries and then replaces them. Unfortunately, in the
    case where we had duplicate predecessors (which are allowed so long as the
    associated PHI entries have the same value), the loop removing the existing PHI
    entries from the to-be-reused PHI would assert (if that PHI was not the one
    which had the duplicates).
    
    llvm-svn: 192001
    f5a3eaea
Loading