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 6b3cbf8 commit de5d6d9Copy full SHA for de5d6d9
llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
@@ -407,7 +407,7 @@ void VPIRFlags::intersectFlags(const VPIRFlags &Other) {
407
DisjointFlags.IsDisjoint &= Other.DisjointFlags.IsDisjoint;
408
break;
409
case OperationType::PossiblyExactOp:
410
- ExactFlags.IsExact = Other.ExactFlags.IsExact;
+ ExactFlags.IsExact &= Other.ExactFlags.IsExact;
411
412
case OperationType::GEPOp:
413
GEPFlags &= Other.GEPFlags;
0 commit comments