[llvm] [SelectionDAG] Not issue TRAP node if naked function (PR #132147)

Eli Friedman via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 13:06:15 PDT 2025


================
@@ -4497,6 +4497,9 @@ class UnreachableInst : public Instruction {
     return isa<Instruction>(V) && classof(cast<Instruction>(V));
   }
 
+  // Whether to do target lowering in SelectionDAG.
+  bool allowISelLowering(bool TrapUnreachable, bool NoTrapAfterNoreturn) const;
----------------
efriedma-quic wrote:

This is a really confusing name... why not `shouldLowerToTrap()`, or something like that?

Otherwise LGTM

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


More information about the llvm-commits mailing list