steveire added inline comments.

================
Comment at: lib/Parse/ParseStmt.cpp:272
     bool HasLeadingEmptyMacro = Tok.hasLeadingEmptyMacro();
-    return Actions.ActOnNullStmt(ConsumeToken(), HasLeadingEmptyMacro);
+    SourceLocation SemiLoc = ConsumeToken();
+    return Actions.ActOnNullStmt(SemiLoc, HasLeadingEmptyMacro,
----------------
Any reason to create the intermediate variable here, instead of leaving the 
`ConsumeToken()` call where it was?


Repository:
  rC Clang

https://reviews.llvm.org/D50767



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to