[PATCH] D120733: [IRSim][IROutliner] Ignore outlined sections that include musttail calls

Jessica Paquette via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 1 11:49:54 PST 2022


paquette added inline comments.


================
Comment at: llvm/include/llvm/Analysis/IRSimilarityIdentifier.h:563
         return Illegal;
+      if (CI.getCallingConv() == CallingConv::SwiftTail && !EnableMustTailCalls)
+        return Illegal;
----------------
Can you add comments here explaining why this is currently disabled? In the future, we may want to handle this, or someone may be interested in why it's disabled.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D120733/new/

https://reviews.llvm.org/D120733



More information about the llvm-commits mailing list