[llvm-branch-commits] [llvm] [GOFF] Add writing of text records (PR #137235)
Fangrui Song via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu May 8 23:24:29 PDT 2025
================
@@ -50,26 +53,26 @@ class MCSectionGOFF final : public MCSection {
friend class MCContext;
friend class MCSymbolGOFF;
- MCSectionGOFF(StringRef Name, SectionKind K, GOFF::SDAttr SDAttributes,
- MCSectionGOFF *Parent)
- : MCSection(SV_GOFF, Name, K.isText(), /*IsVirtual=*/false, nullptr),
+ MCSectionGOFF(StringRef Name, SectionKind K, bool IsVirtual,
----------------
MaskRay wrote:
If it's BSS, call it BSS.
Virtual seems a weird naming convention when the initial Mach-O MC code was added. New code doesn't need to endorse the weird naming.
https://github.com/llvm/llvm-project/pull/137235
More information about the llvm-branch-commits
mailing list