File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
llvm/include/llvm/Analysis Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -142,11 +142,12 @@ class ValueLatticeElement {
142
142
};
143
143
144
144
// ConstVal and Range are initialized on-demand.
145
- ValueLatticeElement () : Tag(unknown) {}
145
+ ValueLatticeElement () : Tag(unknown), NumRangeExtensions( 0 ) {}
146
146
147
147
~ValueLatticeElement () { destroy (); }
148
148
149
- ValueLatticeElement (const ValueLatticeElement &Other) : Tag(Other.Tag) {
149
+ ValueLatticeElement (const ValueLatticeElement &Other)
150
+ : Tag(Other.Tag), NumRangeExtensions(0 ) {
150
151
switch (Other.Tag ) {
151
152
case constantrange:
152
153
case constantrange_including_undef:
@@ -164,7 +165,8 @@ class ValueLatticeElement {
164
165
}
165
166
}
166
167
167
- ValueLatticeElement (ValueLatticeElement &&Other) : Tag(Other.Tag) {
168
+ ValueLatticeElement (ValueLatticeElement &&Other)
169
+ : Tag(Other.Tag), NumRangeExtensions(0 ) {
168
170
switch (Other.Tag ) {
169
171
case constantrange:
170
172
case constantrange_including_undef:
You can’t perform that action at this time.
0 commit comments