[PATCH] D61694: Boilerplate for producing XCOFF object files from the PowerPC backend.
Hal Finkel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue May 28 20:54:11 PDT 2019
hfinkel added inline comments.
================
Comment at: llvm/lib/MC/XCOFFObjectWriter.cpp:68
+ // Timestamp converted to an int32_t.
+ W.write<int32_t>(Now);
+ // Byte Offset to the start of the symbol table.
----------------
Will the tools on AIX complain if this is 0? Our general policy is that the compiler's output should be deterministic/reproducible and this breaks that. Looks like D23934 was never finished, but this value should be tied to that (once it's finished).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D61694/new/
https://reviews.llvm.org/D61694
More information about the llvm-commits
mailing list