diff options
author | Steve Naroff <snaroff@apple.com> | 2009-01-06 19:34:12 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-01-06 19:34:12 +0000 |
commit | 47f5209a80c7c75592e87eb296d2b51e03208ae0 (patch) | |
tree | 1eb9b9e7a86af61b68996bd1b2e71be63fdea958 /lib/Parse/ParseTentative.cpp | |
parent | b8006e50bf378ddbab9601c1fa07f151ac538ff3 (diff) |
Another tweak to handle the MS extensions (<rdar://problem/5956221>).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61821 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseTentative.cpp')
-rw-r--r-- | lib/Parse/ParseTentative.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Parse/ParseTentative.cpp b/lib/Parse/ParseTentative.cpp index 11df2f45ce..a7c3e38931 100644 --- a/lib/Parse/ParseTentative.cpp +++ b/lib/Parse/ParseTentative.cpp @@ -626,6 +626,7 @@ Parser::TPResult Parser::isCXXDeclarationSpecifier() { return TPResult::True(); // Microsoft + case tok::kw___declspec: case tok::kw___cdecl: case tok::kw___stdcall: case tok::kw___fastcall: |