Skip to content

Commit de5d6d9

Browse files
committed
!fixup add missing &, add some more missing tests.
1 parent 6b3cbf8 commit de5d6d9

File tree

2 files changed

+469
-1
lines changed

2 files changed

+469
-1
lines changed

llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ void VPIRFlags::intersectFlags(const VPIRFlags &Other) {
407407
DisjointFlags.IsDisjoint &= Other.DisjointFlags.IsDisjoint;
408408
break;
409409
case OperationType::PossiblyExactOp:
410-
ExactFlags.IsExact = Other.ExactFlags.IsExact;
410+
ExactFlags.IsExact &= Other.ExactFlags.IsExact;
411411
break;
412412
case OperationType::GEPOp:
413413
GEPFlags &= Other.GEPFlags;

0 commit comments

Comments
 (0)