[llvm] [llvm-objdump] Print out xcoff file header for xcoff object file with option private-headers (PR #96350)

James Henderson via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 13 02:13:30 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) {
----------------
jh7370 wrote:

Have you compiled this file since you renamed `TimeStamp` to `Timestamp`?

https://github.com/llvm/llvm-project/pull/96350


More information about the llvm-commits mailing list