aboutsummaryrefslogtreecommitdiff
path: root/lib/Parse/ParseTentative.cpp
diff options
context:
space:
mode:
authorFrancois Pichet <pichet2000@gmail.com>2011-08-25 00:36:46 +0000
committerFrancois Pichet <pichet2000@gmail.com>2011-08-25 00:36:46 +0000
commit58fd97a6f4f7c909aeef46b501ab46f3d6eac671 (patch)
tree40ac07f7f5d2a1756946079524296f47d58d7022 /lib/Parse/ParseTentative.cpp
parentd6334e1d96fa5636dd1476902dc08edbbc8f4409 (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.cpp1
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();