[PATCH] D103275: Update musttail verification to check all swiftasync->swiftasync tail calls.
Duncan P. N. Exon Smith via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 27 12:52:04 PDT 2021
dexonsmith added inline comments.
================
Comment at: llvm/lib/IR/Verifier.cpp:3429
+ if (!CI.isMustTailCall()) {
+#ifndef NDEBUG
+ if (EnableSwiftTailCCMustTailCheck &&
----------------
Hmm... I'm not sure it's right for the verifier to behave differently depending on `NDEBUG` -- note that these `Assert` calls are not the same as the `assert` macro from `<cassert>`. If this was intentional, can you explain why?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103275/new/
https://reviews.llvm.org/D103275
More information about the llvm-commits
mailing list