diff options
author | Chris Lattner <sabre@nondot.org> | 2007-10-08 21:36:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-10-08 21:36:22 +0000 |
commit | 2d29581d2b7ad5ec5df6ff3947fb0711339361a4 (patch) | |
tree | 1ee8ea5893d431eaa7df53730f2744261ec20be0 /include/clang/Basic/IdentifierTable.h | |
parent | 8307adb68435e854fc7ce29cc46e45fecf99c33b (diff) |
add a comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42771 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/IdentifierTable.h')
-rw-r--r-- | include/clang/Basic/IdentifierTable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Basic/IdentifierTable.h b/include/clang/Basic/IdentifierTable.h index 3272d2c2ee..6d8f001376 100644 --- a/include/clang/Basic/IdentifierTable.h +++ b/include/clang/Basic/IdentifierTable.h @@ -44,6 +44,7 @@ class IdentifierInfo { bool IsOtherTargetMacro : 1; // True if ident is macro on another target. bool IsCPPOperatorKeyword : 1; // True if ident is a C++ operator keyword. bool IsNonPortableBuiltin : 1; // True if builtin varies across targets. + // 4 bits left in 32-bit word. void *FETokenInfo; // Managed by the language front-end. IdentifierInfo(const IdentifierInfo&); // NONCOPYABLE. void operator=(const IdentifierInfo&); // NONASSIGNABLE. |