We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1369bc3 commit 899ebf5Copy full SHA for 899ebf5
llvm/tools/llvm-readobj/ELFDumper.cpp
@@ -7396,11 +7396,12 @@ void JSONELFDumper<ELFT>::printAuxillaryDynamicTableEntryInfo(
7396
StringRef Value = this->getDynamicString(Entry.getVal());
7397
ListScope L(this->W, "Path");
7398
while (!Value.empty()) {
7399
- auto [front, back] = Value.split(':');
7400
- this->W.printString(front);
7401
- Value = back;
+ auto [Front, Back] = Value.split(':');
+ this->W.printString(Front);
+ Value = Back;
7402
}
7403
- } break;
+ break;
7404
+ }
7405
case DT_FLAGS:
7406
FormatFlags(ArrayRef(ElfDynamicDTFlags));
7407
break;
0 commit comments