[PATCH] D83529: Summary: [clang] Provide a way for WhileStmt to report the location of its LParen and RParen.

Bruno Ricci via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Jul 10 10:07:26 PDT 2020


riccibruno requested changes to this revision.
riccibruno added inline comments.
This revision now requires changes to proceed.


================
Comment at: clang/lib/Serialization/ASTReaderStmt.cpp:275
+  S->setLParenLoc(readSourceLocation());
+  S->setRParenLoc(readSourceLocation());
 }
----------------
The serialization part is missing (this is the reason for the test failures).


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D83529





More information about the cfe-commits mailing list