File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -99,17 +99,17 @@ namespace {
99
99
// but the exact mapping of FP registers to stack slots is fixed later.
100
100
struct LiveBundle {
101
101
// Bit mask of live FP registers. Bit 0 = FP0, bit 1 = FP1, &c.
102
- unsigned Mask;
102
+ unsigned Mask = 0 ;
103
103
104
104
// Number of pre-assigned live registers in FixStack. This is 0 when the
105
105
// stack order has not yet been fixed.
106
- unsigned FixCount;
106
+ unsigned FixCount = 0 ;
107
107
108
108
// Assigned stack order for live-in registers.
109
109
// FixStack[i] == getStackEntry(i) for all i < FixCount.
110
110
unsigned char FixStack[8 ];
111
111
112
- LiveBundle () : Mask( 0 ), FixCount( 0 ) {}
112
+ LiveBundle () = default ;
113
113
114
114
// Have the live registers been assigned a stack order yet?
115
115
bool isFixed () const { return !Mask || FixCount; }
You can’t perform that action at this time.
0 commit comments