[llvm] [llvm-objdump] Print out xcoff file header for xcoff object file with option private-headers (PR #96350)
zhijian lin via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 13 08:12:49 PDT 2024
================
@@ -73,30 +73,30 @@ void XCOFFDumper::printFileHeader() {
printHex("Magic:", Obj.getMagic());
printNumber("NumberOfSections:", Obj.getNumberOfSections());
- int32_t TimeStamp = Obj.getTimeStamp();
+ int32_t Timestamp = Obj.getTimeStamp();
if (TimeStamp > 0) {
----------------
diggerlin wrote:
thanks for your careful review, I think it is typo when I reformate the code without the compile again.
https://github.com/llvm/llvm-project/pull/96350
More information about the llvm-commits
mailing list