[llvm] [GOFF] Introduce GOFFWriter class (PR #131216)

Kai Nacke via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 11:10:38 PDT 2025


================
@@ -295,6 +284,35 @@ uint64_t GOFFObjectWriter::writeObject(MCAssembler &Asm) {
   return OS.getWrittenSize();
 }
 
+namespace {
+
+class GOFFObjectWriter : public MCObjectWriter {
----------------
redstar wrote:

That is a good point. I think we can also make use of a public available GOFFWriter. Only downside is that it pulls a couple of internal definitions into the header file, but that is the same as in the ELF implementation. Thanks for pointing that out.

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


More information about the llvm-commits mailing list