Commit 42c77e9a authored by Georg Neis's avatar Georg Neis Committed by V8 LUCI CQ

[compiler] Improve printing of ConstFieldInfo

Change-Id: I6e8f1023c761b94f6e2f6dc985a10f58056667d0
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2916814
Commit-Queue: Georg Neis <neis@chromium.org>
Commit-Queue: Maya Lekova <mslekova@chromium.org>
Auto-Submit: Georg Neis <neis@chromium.org>
Reviewed-by: 's avatarMaya Lekova <mslekova@chromium.org>
Cr-Commit-Position: refs/heads/master@{#74745}
parent f051293f
......@@ -37,8 +37,8 @@ std::ostream& operator<<(std::ostream& os, BaseTaggedness base_taggedness) {
std::ostream& operator<<(std::ostream& os,
ConstFieldInfo const& const_field_info) {
if (const_field_info.IsConst()) {
return os << "const (field owner: " << const_field_info.owner_map.address()
<< ")";
return os << "const (field owner: "
<< Brief(*const_field_info.owner_map.ToHandleChecked()) << ")";
} else {
return os << "mutable";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment