summaryrefslogtreecommitdiffstats
path: root/clang/lib/Basic/IdentifierTable.cpp
diff options
context:
space:
mode:
authorFrancois Pichet <pichet2000@gmail.com>2012-07-24 06:17:24 +0000
committerFrancois Pichet <pichet2000@gmail.com>2012-07-24 06:17:24 +0000
commit1c7207c88682cf49abf8947a952fab5497b24dbb (patch)
treed0e3d3890d258b383b28889f75469f85172b1ead /clang/lib/Basic/IdentifierTable.cpp
parent17300940ae0ea5721fe3c32b1c28185ef9cae886 (diff)
downloadbcm5719-llvm-1c7207c88682cf49abf8947a952fab5497b24dbb.tar.gz
bcm5719-llvm-1c7207c88682cf49abf8947a952fab5497b24dbb.zip
Change the way KEYNOMS is defined to be more comprehensible.
llvm-svn: 160663
Diffstat (limited to 'clang/lib/Basic/IdentifierTable.cpp')
-rw-r--r--clang/lib/Basic/IdentifierTable.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Basic/IdentifierTable.cpp b/clang/lib/Basic/IdentifierTable.cpp
index 96d09a6bc1f..92cc179b8e6 100644
--- a/clang/lib/Basic/IdentifierTable.cpp
+++ b/clang/lib/Basic/IdentifierTable.cpp
@@ -103,8 +103,8 @@ namespace {
KEYOPENCL = 0x200,
KEYC11 = 0x400,
KEYARC = 0x800,
- KEYALL = 0x0fff,
- KEYNOMS = 0x1000
+ KEYNOMS = 0x01000,
+ KEYALL = (0xffff & ~KEYNOMS) // Because KEYNOMS is used to exclude.
};
}
OpenPOWER on IntegriCloud