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

Eric Astor via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 11 06:14: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++;
----------------
ericastor wrote:

... it's been a while since I wrote this, and I'm sorry to say I'm not sure. I have a vague memory that it was related in a surprising way.

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


More information about the llvm-commits mailing list