This revision was automatically updated to reflect the committed changes.
Closed by commit rG80bebbc7cb77: [clang][NFC] Cleanup some coroutine tests 
(authored by urnathan).
Herald added a project: clang.
Herald added a subscriber: cfe-commits.

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D125535/new/

https://reviews.llvm.org/D125535

Files:
  clang/test/CodeGenCoroutines/coro-ret-void.cpp
  clang/test/CoverageMapping/coroutine.cpp


Index: clang/test/CoverageMapping/coroutine.cpp
===================================================================
--- clang/test/CoverageMapping/coroutine.cpp
+++ clang/test/CoverageMapping/coroutine.cpp
@@ -30,6 +30,7 @@
     int get_return_object();
     suspend_always initial_suspend();
     suspend_always final_suspend() noexcept;
+    void unhandled_exception() noexcept;
     void return_value(int);
   };
 };
Index: clang/test/CodeGenCoroutines/coro-ret-void.cpp
===================================================================
--- clang/test/CodeGenCoroutines/coro-ret-void.cpp
+++ clang/test/CodeGenCoroutines/coro-ret-void.cpp
@@ -8,6 +8,7 @@
     std::suspend_never initial_suspend();
     std::suspend_never final_suspend() noexcept;
     void return_void();
+    void unhandled_exception() noexcept;
   };
 };
 
@@ -39,6 +40,7 @@
     std::suspend_never initial_suspend();
     std::suspend_never final_suspend() noexcept;
     void return_value(int);
+    void unhandled_exception() noexcept;
   };
 };
 


Index: clang/test/CoverageMapping/coroutine.cpp
===================================================================
--- clang/test/CoverageMapping/coroutine.cpp
+++ clang/test/CoverageMapping/coroutine.cpp
@@ -30,6 +30,7 @@
     int get_return_object();
     suspend_always initial_suspend();
     suspend_always final_suspend() noexcept;
+    void unhandled_exception() noexcept;
     void return_value(int);
   };
 };
Index: clang/test/CodeGenCoroutines/coro-ret-void.cpp
===================================================================
--- clang/test/CodeGenCoroutines/coro-ret-void.cpp
+++ clang/test/CodeGenCoroutines/coro-ret-void.cpp
@@ -8,6 +8,7 @@
     std::suspend_never initial_suspend();
     std::suspend_never final_suspend() noexcept;
     void return_void();
+    void unhandled_exception() noexcept;
   };
 };
 
@@ -39,6 +40,7 @@
     std::suspend_never initial_suspend();
     std::suspend_never final_suspend() noexcept;
     void return_value(int);
+    void unhandled_exception() noexcept;
   };
 };
 
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to