[PATCH] D91098: [coro] Async coroutines: Allow more than 3 arguments in the dispatch function
Xun Li via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 13 13:27:00 PST 2020
lxfind added inline comments.
================
Comment at: llvm/lib/Transforms/Coroutines/CoroSplit.cpp:686
+ InlineFunctionInfo InlineInfo;
+ auto InlineRes = InlineFunction(*CallerContext, InlineInfo);
+ assert(InlineRes.isSuccess());
----------------
InlineRes will be unused in a release build. Add (void)?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D91098/new/
https://reviews.llvm.org/D91098
More information about the llvm-commits
mailing list