diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-10-19 00:45:00 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-10-19 00:45:00 +0000 |
commit | 108cb22dac4d5834434cbd531ccff7e4c1171014 (patch) | |
tree | ac84d1f282358dc6b36ad0163d36fcc76f90f6e4 /clang/lib/Serialization/ASTWriter.cpp | |
parent | 72be390e1341e8e6729648690dd1ae040996d611 (diff) | |
download | bcm5719-llvm-108cb22dac4d5834434cbd531ccff7e4c1171014.tar.gz bcm5719-llvm-108cb22dac4d5834434cbd531ccff7e4c1171014.zip |
Describe the new input-files block and its record, for llvm-bcanalyzer.
llvm-svn: 166252
Diffstat (limited to 'clang/lib/Serialization/ASTWriter.cpp')
-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 adbca78d97c..4e66a2fabbb 100644 --- a/clang/lib/Serialization/ASTWriter.cpp +++ b/clang/lib/Serialization/ASTWriter.cpp @@ -776,6 +776,9 @@ void ASTWriter::WriteBlockInfoBlock() { RECORD(ORIGINAL_FILE); RECORD(ORIGINAL_PCH_DIR); + BLOCK(INPUT_FILES_BLOCK); + RECORD(INPUT_FILE); + // AST Top-Level Block. BLOCK(AST_BLOCK); RECORD(TYPE_OFFSET); |