[llvm-branch-commits] [llvm] [GOFF] Add writing of section symbols (PR #133799)

Fangrui Song via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Tue Apr 1 21:33:26 PDT 2025


================
@@ -169,6 +169,91 @@ enum SubsectionKind : uint8_t {
   SK_PPA1 = 2,
   SK_PPA2 = 4,
 };
+
+// The standard System/390 convention is to name the high-order (leftmost) bit
+// in a byte as bit zero. The Flags type helps to set bits in byte according
+// to this numeration order.
+class Flags {
+  uint8_t Val;
----------------
MaskRay wrote:

`= 0` and make the default ctor defaulted `= default;`

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


More information about the llvm-branch-commits mailing list