File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -72,11 +72,6 @@ class MCSymbol {
72
72
// / symbol has no size this field will be NULL.
73
73
const MCExpr *SymbolSize = nullptr ;
74
74
75
- // / The alignment of the symbol, if it is 'common', or -1.
76
- //
77
- // FIXME: Pack this in with other fields?
78
- unsigned CommonAlign = -1U ;
79
-
80
75
union {
81
76
// / The offset to apply to the fragment address to form this symbol's value.
82
77
uint64_t Offset;
@@ -85,6 +80,11 @@ class MCSymbol {
85
80
uint64_t CommonSize;
86
81
};
87
82
83
+ // / The alignment of the symbol, if it is 'common', or -1.
84
+ //
85
+ // FIXME: Pack this in with other fields?
86
+ unsigned CommonAlign = -1U ;
87
+
88
88
// / The Flags field is used by object file implementations to store
89
89
// / additional per symbol information which is not easily classified.
90
90
mutable uint32_t Flags = 0 ;
You can’t perform that action at this time.
0 commit comments