[PATCH] D35383: [coroutines] Add serialization/deserialization of coroutines

Richard Smith - zygoloid via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Jul 24 12:32:40 PDT 2017


rsmith accepted this revision.
rsmith added inline comments.
This revision is now accepted and ready to land.


================
Comment at: lib/Serialization/ASTWriterStmt.cpp:320-321
+
+static void serializeSuspendExpr(ASTStmtWriter &Writer, ASTRecordWriter &Record,
+                                 CoroutineSuspendExpr *E) {
+  Writer.VisitExpr(E);
----------------
Please call this `ASTStmtWriter::VisitCoroutineSuspendExpr`, following the pattern we use in the rest of this visitor.


https://reviews.llvm.org/D35383





More information about the cfe-commits mailing list