================
@@ -4133,6 +4216,43 @@ void 
PragmaMaxTokensTotalHandler::HandlePragma(Preprocessor &PP,
   PP.overrideMaxTokens(MaxTokens, Loc);
 }
 
+static void zOSPragmaHandlerHelper(Preprocessor &PP, Token &Tok,
+                                   tok::TokenKind TokKind) {
+  Token EoF, AnnotTok;
+  EoF.startToken();
----------------
erichkeane wrote:

Can you re-order this bit a bit?  Basically, move the EoF stuff to the 'end' 
right before you add it.  Having it all initialized before the rest of the 
stuff (even before Annot) throws off trying to read this for ordering.

https://github.com/llvm/llvm-project/pull/141671
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to