From 9ffd4a9b9624eb38e8fcc946faf8134b51dbf94b Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Fri, 5 Jun 2009 07:05:05 +0000 Subject: Move CharIsSigned from TargetInfo to LangOptions. llvm-svn: 72928 --- clang/lib/Frontend/PCHWriter.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'clang/lib/Frontend/PCHWriter.cpp') 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); -- cgit v1.2.3