diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-08-04 16:39:39 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-08-04 16:39:39 +0000 |
commit | 78d0b57d8803761559f9eee0c780cf04f3e99965 (patch) | |
tree | 778b4b984fdc08232e793a12158d8852efd8d3bb | |
parent | a863b4b4e3bbfb21924c55452c8f44d607132fd3 (diff) | |
download | bcm5719-llvm-78d0b57d8803761559f9eee0c780cf04f3e99965.tar.gz bcm5719-llvm-78d0b57d8803761559f9eee0c780cf04f3e99965.zip |
Add some missing record names to the AST output. No functionality change, but llvm-bcanalyzer will be a little more informative now for AST files
llvm-svn: 136883
-rw-r--r-- | clang/lib/Serialization/ASTWriter.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/Serialization/ASTWriter.cpp b/clang/lib/Serialization/ASTWriter.cpp index f24823ebff3..caf5836efc7 100644 --- a/clang/lib/Serialization/ASTWriter.cpp +++ b/clang/lib/Serialization/ASTWriter.cpp @@ -780,11 +780,14 @@ void ASTWriter::WriteBlockInfoBlock() { RECORD(DIAG_PRAGMA_MAPPINGS); RECORD(CUDA_SPECIAL_DECL_REFS); RECORD(HEADER_SEARCH_TABLE); + RECORD(ORIGINAL_PCH_DIR); RECORD(FP_PRAGMA_OPTIONS); RECORD(OPENCL_EXTENSIONS); RECORD(DELEGATING_CTORS); RECORD(FILE_SOURCE_LOCATION_OFFSETS); RECORD(KNOWN_NAMESPACES); + RECORD(MODULE_OFFSET_MAP); + RECORD(SOURCE_MANAGER_LINE_TABLE); // SourceManager Block. BLOCK(SOURCE_MANAGER_BLOCK); |