[PATCH] D142621: [Couroutines] Modify CoroFrame materializable into a callback

Jannik Silvanus via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 10 04:57:47 PST 2023


jsilvanus added inline comments.


================
Comment at: llvm/unittests/Transforms/Coroutines/ExtraRematTest.cpp:148
+  Function *F = M->getFunction("f.resume");
+  ASSERT_TRUE(F && "could not find split function f.resume");
+
----------------
I believe the intended way to pass custom messages is like this:

```
ASSERT_TRUE(F) << "could not find split function f.resume";
```


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D142621



More information about the llvm-commits mailing list