[llvm] [ms] [llvm-ml] Allow optional parenthesized arguments for macros (PR #129905)

Martin Storsjö via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 11 04:26:46 PDT 2025


================
@@ -698,8 +698,10 @@ size_t AsmLexer::peekTokens(MutableArrayRef<AsmToken> Buf,
 
     Buf[ReadCount] = Token;
 
-    if (Token.is(AsmToken::Eof))
+    if (Token.is(AsmToken::Eof)) {
+      ReadCount++;
----------------
mstorsjo wrote:

Is this change related to the rest, or is it a separate drive-by fix?

https://github.com/llvm/llvm-project/pull/129905


More information about the llvm-commits mailing list