[clang] [llvm] [Coroutines] Mark parameter allocas with coro.outside.frame metadata (PR #127653)
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 16:15:42 PST 2025
================
@@ -190,3 +210,38 @@ method some_class::good_coroutine_calls_custom_constructor(float) {
// CHECK: invoke void @_ZNSt16coroutine_traitsIJ6methodR10some_classfEE12promise_typeC1ES2_f(ptr {{[^,]*}} %__promise, ptr noundef nonnull align 1 dereferenceable(1) %{{.+}}, float
co_return;
}
+
+
+struct MSParm {
+ int val;
+ ~MSParm();
+};
+
+void consume(int) noexcept;
+
+// Similarly to the [[clang::trivial_abi]] parameters, with the MSVC ABI
----------------
rnk wrote:
Right, this is a good edge case to motivate generalizing this for all parameters.
https://github.com/llvm/llvm-project/pull/127653
More information about the llvm-commits
mailing list