From: Chris Lattner Date: Mon, 8 Oct 2007 21:36:22 +0000 (+0000) Subject: add a comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2d29581d2b7ad5ec5df6ff3947fb0711339361a4;p=clang add a comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42771 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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.