diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-06-05 07:05:05 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-06-05 07:05:05 +0000 |
commit | 9ffd4a9b9624eb38e8fcc946faf8134b51dbf94b (patch) | |
tree | f2f84b9538acf8d61b8a89b0bd954926bec05604 /clang/lib/Frontend/PCHWriter.cpp | |
parent | d7bcad67d4b72c48e44f846d03b80cd98403b08d (diff) | |
download | bcm5719-llvm-9ffd4a9b9624eb38e8fcc946faf8134b51dbf94b.tar.gz bcm5719-llvm-9ffd4a9b9624eb38e8fcc946faf8134b51dbf94b.zip |
Move CharIsSigned from TargetInfo to LangOptions.
llvm-svn: 72928
Diffstat (limited to 'clang/lib/Frontend/PCHWriter.cpp')
-rw-r--r-- | clang/lib/Frontend/PCHWriter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Frontend/PCHWriter.cpp b/clang/lib/Frontend/PCHWriter.cpp index 80e863bd711..765fecbf852 100644 --- a/clang/lib/Frontend/PCHWriter.cpp +++ b/clang/lib/Frontend/PCHWriter.cpp @@ -556,6 +556,8 @@ void PCHWriter::WriteLanguageOptions(const LangOptions &LangOpts) { Record.push_back(LangOpts.NoInline); // Should __NO_INLINE__ be defined. Record.push_back(LangOpts.AccessControl); // Whether C++ access control should // be enabled. + Record.push_back(LangOpts.CharIsSigned); // Whether char is a signed or + // unsigned type Record.push_back(LangOpts.getGCMode()); Record.push_back(LangOpts.getVisibilityMode()); Record.push_back(LangOpts.InstantiationDepth); |