[llvm] [TailDuplicator] Determine if computed gotos using `blockaddress` (PR #132536)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 24 08:08:22 PDT 2025


================
@@ -359,6 +359,12 @@ void MachineInstr::setExtraInfo(MachineFunction &MF,
     Info.set<EIIK_MMO>(MMOs[0]);
 }
 
+bool MachineInstr::jumpToIRBlockAddressTaken() const {
+  return llvm::all_of(getParent()->successors(), [](const auto *Succ) {
----------------
arsenm wrote:

No auto 

https://github.com/llvm/llvm-project/pull/132536


More information about the llvm-commits mailing list