[lld] [LLD][COFF] Emit tail merge pdata for delay load thunks on ARM64EC (PR #116810)

Martin Storsjö via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 19 14:13:32 PST 2024


================
@@ -395,6 +395,7 @@ class TailMergePDataChunkX64 : public NonSectionChunk {
   }
 
   size_t getSize() const override { return 3 * sizeof(uint32_t); }
+  MachineTypes getMachine() const override { return AMD64; }
----------------
mstorsjo wrote:

Why is this bit needed here (and the other addition of `getMachine()` as well), or more precisely - why wasn't it needed before and why is it needed now?

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


More information about the llvm-commits mailing list