diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-08-09 15:54:21 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-08-09 15:54:21 +0000 |
commit | 45c4ea75b235de94f44bf96843624e6a559e4c00 (patch) | |
tree | e4918478e73dad723394e611ddb25aad6ebefa09 /lib/Serialization/ASTWriter.cpp | |
parent | 3b8043b49aff6e5d70f29ef5684214ce2473763c (diff) |
Move the construction of the RecordDecl representing the runtime
layout of a constant NSString from the ASTContext over to CodeGen,
since this is solely CodeGen's responsibility. Eliminates one of the
unnecessary "special" types that we serialize.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137121 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Serialization/ASTWriter.cpp')
-rw-r--r-- | lib/Serialization/ASTWriter.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Serialization/ASTWriter.cpp b/lib/Serialization/ASTWriter.cpp index 256bf9da3e..6cdd6cad60 100644 --- a/lib/Serialization/ASTWriter.cpp +++ b/lib/Serialization/ASTWriter.cpp @@ -2943,7 +2943,6 @@ void ASTWriter::WriteASTCore(Sema &SemaRef, MemorizeStatCalls *StatCalls, AddTypeRef(Context.getRawBlockdescriptorType(), SpecialTypes); AddTypeRef(Context.getRawBlockdescriptorExtendedType(), SpecialTypes); AddTypeRef(Context.ObjCSelRedefinitionType, SpecialTypes); - AddTypeRef(Context.getRawNSConstantStringType(), SpecialTypes); SpecialTypes.push_back(Context.isInt128Installed()); // Keep writing types and declarations until all types and |