Skip to content

Commit 50bbefc

Browse files
committed
PR671: review comments in dump methods
1 parent 5c8f133 commit 50bbefc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flang/lib/Lower/SymbolMap.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ llvm::raw_ostream &fir::operator<<(llvm::raw_ostream &os,
8989

9090
llvm::raw_ostream &fir::operator<<(llvm::raw_ostream &os,
9191
const fir::BoxValue &box) {
92-
os << "box: { irbox: " << box.getAddr();
92+
os << "box: { value: " << box.getAddr();
9393
if (box.lbounds.size()) {
9494
os << ", lbounds: [";
9595
llvm::interleaveComma(box.lbounds, os);
@@ -110,7 +110,7 @@ llvm::raw_ostream &fir::operator<<(llvm::raw_ostream &os,
110110

111111
llvm::raw_ostream &fir::operator<<(llvm::raw_ostream &os,
112112
const fir::MutableBoxValue &box) {
113-
os << "mutablebox: { irbox: " << box.getAddr();
113+
os << "mutablebox: { addr: " << box.getAddr();
114114
if (!box.lenParams.empty()) {
115115
os << ", non deferred type params: [";
116116
llvm::interleaveComma(box.lenParams, os);

0 commit comments

Comments
 (0)