]> granicus.if.org Git - clang/commitdiff
Use getLogicalLineNumber() in FuzzyParseMicrosoftAsmStatement(), it's more general...
authorSteve Naroff <snaroff@apple.com>
Fri, 8 Feb 2008 18:01:27 +0000 (18:01 +0000)
committerSteve Naroff <snaroff@apple.com>
Fri, 8 Feb 2008 18:01:27 +0000 (18:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46885 91177308-0d34-0410-b5e6-96231b3b80d8

Parse/ParseStmt.cpp
test/Sema/ms-fuzzy-asm.c

index 4be3f1e40a9b1f4020dabaf8f337fee84cae4609..f8ae4a05585067cd3f384d0a8c4248b44c4ef405 100644 (file)
@@ -922,21 +922,13 @@ Parser::StmtResult Parser::FuzzyParseMicrosoftAsmStatement() {
     // that the rest of the line is an assembly-language statement.
     SourceManager &SrcMgr = PP.getSourceManager();
     SourceLocation TokLoc = Tok.getLocation();
-    if (TokLoc.isFileID()) {
-      unsigned lineNo = SrcMgr.getLineNumber(TokLoc);
-      do {
-        ConsumeAnyToken();
-        TokLoc = Tok.getLocation();
-      } while (TokLoc.isFileID() && (SrcMgr.getLineNumber(TokLoc) == lineNo) && 
-               Tok.isNot(tok::r_brace) && Tok.isNot(tok::semi) && 
-               Tok.isNot(tok::eof));
-    } else { // The asm tokens come from a macro expansion.
-      do {
-        ConsumeAnyToken();
-        TokLoc = Tok.getLocation();
-      } while (TokLoc.isMacroID() && Tok.isNot(tok::r_brace) && 
-               Tok.isNot(tok::semi) && Tok.isNot(tok::eof));
-    }
+    unsigned lineNo = SrcMgr.getLogicalLineNumber(TokLoc);
+    do {
+      ConsumeAnyToken();
+      TokLoc = Tok.getLocation();
+    } while ((SrcMgr.getLogicalLineNumber(TokLoc) == lineNo) && 
+             Tok.isNot(tok::r_brace) && Tok.isNot(tok::semi) && 
+             Tok.isNot(tok::eof));
   }
   return false;
 }
index 7c24985b6c5b12ee4b2b9d8614495ae0e7e92373..5e387f38083658aa759fde36cdb694f411bfd425 100644 (file)
@@ -5,6 +5,5 @@
 
 void t1(void) { M }
 void t2(void) { __asm int 0x2c }
-// FIXME? We don't support fuzzy parsing line-oriented __asm's where the body is partially defined in a macro.
-void t3(void) { __asm M2 0x2c } // expected-error{{expected ';' after expression}} expected-warning{{expression result unused}}
+void t3(void) { __asm M2 0x2c }