File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ llvm::raw_ostream &fir::operator<<(llvm::raw_ostream &os,
89
89
90
90
llvm::raw_ostream &fir::operator <<(llvm::raw_ostream &os,
91
91
const fir::BoxValue &box) {
92
- os << " box: { irbox : " << box.getAddr ();
92
+ os << " box: { value : " << box.getAddr ();
93
93
if (box.lbounds .size ()) {
94
94
os << " , lbounds: [" ;
95
95
llvm::interleaveComma (box.lbounds , os);
@@ -110,7 +110,7 @@ llvm::raw_ostream &fir::operator<<(llvm::raw_ostream &os,
110
110
111
111
llvm::raw_ostream &fir::operator <<(llvm::raw_ostream &os,
112
112
const fir::MutableBoxValue &box) {
113
- os << " mutablebox: { irbox : " << box.getAddr ();
113
+ os << " mutablebox: { addr : " << box.getAddr ();
114
114
if (!box.lenParams .empty ()) {
115
115
os << " , non deferred type params: [" ;
116
116
llvm::interleaveComma (box.lenParams , os);
You can’t perform that action at this time.
0 commit comments