Author: Nikita Popov
Date: 2025-09-08T09:41:17+02:00
New Revision: 12fbb344a1e84aed4a34d3d00a387f15cebc82e1

URL: 
https://github.com/llvm/llvm-project/commit/12fbb344a1e84aed4a34d3d00a387f15cebc82e1
DIFF: 
https://github.com/llvm/llvm-project/commit/12fbb344a1e84aed4a34d3d00a387f15cebc82e1.diff

LOG: [Coroutines] Restore accidentally dropped intrinsic IDs

These were unintentionally dropped in #145518. These intrinsics
are not overloaded, so should be part of this list.

(cherry picked from commit a647bb4a7ba23b5a7c7484fd5162fef2d10c7068)

Added: 
    

Modified: 
    llvm/lib/Transforms/Coroutines/Coroutines.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Coroutines/Coroutines.cpp 
b/llvm/lib/Transforms/Coroutines/Coroutines.cpp
index 59ae057cae793..ac93f748ce65c 100644
--- a/llvm/lib/Transforms/Coroutines/Coroutines.cpp
+++ b/llvm/lib/Transforms/Coroutines/Coroutines.cpp
@@ -85,6 +85,9 @@ static Intrinsic::ID NonOverloadedCoroIntrinsics[] = {
     Intrinsic::coro_id_async,
     Intrinsic::coro_id_retcon,
     Intrinsic::coro_id_retcon_once,
+    Intrinsic::coro_noop,
+    Intrinsic::coro_prepare_async,
+    Intrinsic::coro_prepare_retcon,
     Intrinsic::coro_promise,
     Intrinsic::coro_resume,
     Intrinsic::coro_save,


        
_______________________________________________
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

Reply via email to