[PATCH] D82549: [AIX][XCOFF] parsing xcoff object file auxiliary header
Jason Liu via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 16 11:24:10 PDT 2020
jasonliu added inline comments.
================
Comment at: llvm/tools/llvm-readobj/XCOFFDumper.cpp:540
+ W.printHex("Alignment of thread-local storage",
+ AuxHeader->getTDataAlignment());
+ }
----------------
This field does not appear to have partial field treatment.
================
Comment at: llvm/tools/llvm-readobj/XCOFFDumper.cpp:530
+ PrintAuxMember32(Number, "Section number for .tdata", SecNumOfTData);
+ PrintAuxMember32(Number, "Section number for .tbss", SecNumOfTBSS);
+
----------------
hubert.reinterpretcast wrote:
> We should produce some warning if the auxiliary table size indicates additional content past the last field that the code understands. This is another case where I think we should also output the raw data.
This is marked as Done. But I don't think we are able to print additional content under current revision. But anyway, I would expect this scenario would get added in the test case (which belong to another patch).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82549/new/
https://reviews.llvm.org/D82549
More information about the llvm-commits
mailing list