diff options
author | Steve Naroff <snaroff@apple.com> | 2008-04-07 21:06:54 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2008-04-07 21:06:54 +0000 |
commit | d77bc2834269593282e06806a74d14e244bc26a4 (patch) | |
tree | 8331c8e0c8294f74fe571d0d8201193b94c3ef9a /lib/Parse/ParseStmt.cpp | |
parent | 5426bf6456a5aeac416a9150de157904d101c819 (diff) |
Have Parser::FuzzyParseMicrosoftAsmStatement() return the null statement (';').
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49349 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseStmt.cpp')
-rw-r--r-- | lib/Parse/ParseStmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Parse/ParseStmt.cpp b/lib/Parse/ParseStmt.cpp index f9800219ed..670181e224 100644 --- a/lib/Parse/ParseStmt.cpp +++ b/lib/Parse/ParseStmt.cpp @@ -950,7 +950,7 @@ Parser::StmtResult Parser::FuzzyParseMicrosoftAsmStatement() { Tok.isNot(tok::r_brace) && Tok.isNot(tok::semi) && Tok.isNot(tok::eof)); } - return false; + return Actions.ActOnNullStmt(Tok.getLocation()); } /// ParseAsmStatement - Parse a GNU extended asm statement. |