[llvm] [Coroutines] Allocas used after @coro.end should not go in the coro frame (PR #127524)

Hans Wennborg via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 17 09:23:03 PST 2025


================
@@ -64,7 +64,7 @@ indirect.dest:
   br label %coro_Cleanup
 
 coro_Cleanup:                                     ; preds = %sw.epilog, %sw.bb1
-  %5 = load ptr, ptr %coro_hdl, align 8, !dbg !24
+  %5 = load ptr, ptr %coro_hdl, align 8, !dbg !24  ; XXX: Here %coro_hdl is used between a coro.suspend and coro.end, which seems wrong?
----------------
zmodem wrote:

Yeah, I'm not sure about this test..

https://github.com/llvm/llvm-project/pull/127524


More information about the llvm-commits mailing list