diff options
author | Chuanqi Xu <yedeng.yd@linux.alibaba.com> | 2024-06-03 18:39:19 +0800 |
---|---|---|
committer | Chuanqi Xu <yedeng.yd@linux.alibaba.com> | 2024-06-03 18:49:18 +0800 |
commit | 6b30180b663e1fe4de32046398581a374c8a54f2 (patch) | |
tree | ae2bcc2889d5a4de25ac8b91f7de28ebda4e1d5e /clang/lib/Serialization/ModuleFile.cpp | |
parent | 910098e40572f9fe6bfde161eafd1b390a356043 (diff) | |
download | llvm-6b30180b663e1fe4de32046398581a374c8a54f2.zip llvm-6b30180b663e1fe4de32046398581a374c8a54f2.tar.gz llvm-6b30180b663e1fe4de32046398581a374c8a54f2.tar.bz2 |
Revert "[serialization] no transitive decl change (#92083)"
This reverts commit ccb73e882b2d727877cfda42a14a6979cfd31f04.
It looks like there are some bots complaining about the patch.
See the post commit comment in
https://github.com/llvm/llvm-project/pull/92083 to track it.
Diffstat (limited to 'clang/lib/Serialization/ModuleFile.cpp')
-rw-r--r-- | clang/lib/Serialization/ModuleFile.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Serialization/ModuleFile.cpp b/clang/lib/Serialization/ModuleFile.cpp index f64a59b..2c42d33 100644 --- a/clang/lib/Serialization/ModuleFile.cpp +++ b/clang/lib/Serialization/ModuleFile.cpp @@ -87,6 +87,7 @@ LLVM_DUMP_METHOD void ModuleFile::dump() { << " Number of types: " << LocalNumTypes << '\n'; dumpLocalRemap("Type index local -> global map", TypeRemap); - llvm::errs() << " Base decl index: " << BaseDeclIndex << '\n' + llvm::errs() << " Base decl ID: " << BaseDeclID << '\n' << " Number of decls: " << LocalNumDecls << '\n'; + dumpLocalRemap("Decl ID local -> global map", DeclRemap); } |