We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0436fcc commit d98dd0dCopy full SHA for d98dd0d
llvm/include/llvm/Analysis/ValueLattice.h
@@ -202,7 +202,7 @@ class ValueLatticeElement {
202
break;
203
case constantfprange:
204
case constantfprange_including_undef:
205
- new (&FPRange) ConstantFPRange(Other.FPRange);
+ new (&FPRange) ConstantFPRange(std::move(Other.FPRange));
206
NumRangeExtensions = Other.NumRangeExtensions;
207
208
case constant:
0 commit comments