================ @@ -1866,10 +1866,18 @@ bool SimplifyCFGOpt::hoistCommonCodeFromSuccessors(Instruction *TI, // If either of the blocks has it's address taken, then we can't do this fold, // because the code we'd hoist would no longer run when we jump into the block // by it's address. + SmallVector<BasicBlock *, 4> UniqSuccessors; ---------------- nikic wrote:
```suggestion SmallVector<BasicBlock *, 4> UniqueSuccessors; ``` https://github.com/llvm/llvm-project/pull/165700 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
