File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -523,7 +523,7 @@ class RegionBuilderHelper {
523
523
isInteger (arg0) && arg0.getType ().getIntOrFloatBitWidth () == 1 ;
524
524
bool tailFloatingPoint =
525
525
isFloatingPoint (arg0) && isFloatingPoint (arg1) && isFloatingPoint (arg2);
526
- bool tailInteger = isInteger (arg0) && isInteger (arg1) && isInteger (arg1 );
526
+ bool tailInteger = isInteger (arg0) && isInteger (arg1) && isInteger (arg2 );
527
527
OpBuilder::InsertionGuard g (builder);
528
528
builder.setInsertionPointToEnd (&block);
529
529
switch (ternaryFn) {
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ ScalableValueBoundsConstraintSet::computeScalableBound(
107
107
108
108
AffineMap bound = [&] {
109
109
if (boundType == BoundType::EQ && !invalidBound (lowerBound) &&
110
- lowerBound[0 ] == lowerBound [0 ]) {
110
+ lowerBound[0 ] == upperBound [0 ]) {
111
111
return lowerBound[0 ];
112
112
} else if (boundType == BoundType::LB && !invalidBound (lowerBound)) {
113
113
return lowerBound[0 ];
You can’t perform that action at this time.
0 commit comments