diff options
author | Francois Pichet <pichet2000@gmail.com> | 2011-08-25 00:36:46 +0000 |
---|---|---|
committer | Francois Pichet <pichet2000@gmail.com> | 2011-08-25 00:36:46 +0000 |
commit | 58fd97a6f4f7c909aeef46b501ab46f3d6eac671 (patch) | |
tree | 40ac07f7f5d2a1756946079524296f47d58d7022 /lib/Parse/ParseTentative.cpp | |
parent | d6334e1d96fa5636dd1476902dc08edbbc8f4409 (diff) |
Add support for Microsoft __ptr32 keyword.
Patch by Chris Cudmore!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138533 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 e354f57b70..f0f4c2c729 100644 --- a/lib/Parse/ParseTentative.cpp +++ b/lib/Parse/ParseTentative.cpp @@ -904,6 +904,7 @@ Parser::TPResult Parser::isCXXDeclarationSpecifier() { case tok::kw___thiscall: case tok::kw___w64: case tok::kw___ptr64: + case tok::kw___ptr32: case tok::kw___forceinline: case tok::kw___unaligned:
return TPResult::True(); |