commit | 07e55d047e2ccdcba9bf37fcffb3fa5e24b6a126 | [log] [tgz] |
---|---|---|
author | Googler <no-reply@google.com> | Thu Aug 24 20:27:25 2023 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Thu Aug 24 20:28:07 2023 -0700 |
tree | 163f74c246a13ba6d808a579d62135d29105e2bc | |
parent | 9cd2fc229d8ee995e06a64a56da64fb153277274 [diff] |
Integrate LLVM at llvm/llvm-project@1ff0bdb86dbf Updates LLVM usage to match [1ff0bdb86dbf](https://github.com/llvm/llvm-project/commit/1ff0bdb86dbf) PiperOrigin-RevId: 559954302 Change-Id: If4c6d0733b3a9aa03a6981ac635e42721d5f4c7b
diff --git a/lifetime_analysis/object_repository.cc b/lifetime_analysis/object_repository.cc index d681873..1eeb71c 100644 --- a/lifetime_analysis/object_repository.cc +++ b/lifetime_analysis/object_repository.cc
@@ -525,7 +525,7 @@ os << "InitialPointsToMap:\n" << initial_points_to_map_.DebugString() << "\n"; for (const auto& [field, object] : field_object_map_) { os << "Field '"; - field.second->printName(os); + field.second->printName(os, field.second->getASTContext().getPrintingPolicy()); os << "' on " << field.first->DebugString() << " object: " << object->DebugString() << "\n"; }