From bee456822e37d582a2db4d6439af9fab5676ed0f Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Tue, 3 Feb 2026 20:28:47 -0500 Subject: [PATCH] Internals: Fix missing newline on co_return output code --- src/V3EmitCFunc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/V3EmitCFunc.h b/src/V3EmitCFunc.h index 460c6ad69..7cd652e43 100644 --- a/src/V3EmitCFunc.h +++ b/src/V3EmitCFunc.h @@ -478,7 +478,7 @@ public: if (nodep->isCoroutine()) { // Sometimes coroutines don't have co_awaits, // so emit a co_return at the end to avoid compile errors. - puts("co_return;"); + puts("co_return;\n"); } puts("}\n");