diff options
author | Francois Pichet <pichet2000@gmail.com> | 2012-07-24 06:17:24 +0000 |
---|---|---|
committer | Francois Pichet <pichet2000@gmail.com> | 2012-07-24 06:17:24 +0000 |
commit | a5a4cba88796cb1b8365ed523e8b6fdce9e512bd (patch) | |
tree | b5467ba16ecc21c751a419b8653e909d3e74f6ad /lib/Basic/IdentifierTable.cpp | |
parent | 9a29d74fb7c97c615d08205c25b4fa142b5ceca1 (diff) |
Change the way KEYNOMS is defined to be more comprehensible.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160663 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/IdentifierTable.cpp')
-rw-r--r-- | lib/Basic/IdentifierTable.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Basic/IdentifierTable.cpp b/lib/Basic/IdentifierTable.cpp index 96d09a6bc1..92cc179b8e 100644 --- a/lib/Basic/IdentifierTable.cpp +++ b/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. }; } |