File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7353,9 +7353,9 @@ static SDValue lowerV8I16SingleInputVectorShuffle(
7353
7353
auto balanceSides = [&](ArrayRef<int> AToAInputs, ArrayRef<int> BToAInputs,
7354
7354
ArrayRef<int> BToBInputs, ArrayRef<int> AToBInputs,
7355
7355
int AOffset, int BOffset) {
7356
- assert(AToAInputs.size() == 3 || AToAInputs.size() == 1 &&
7356
+ assert(( AToAInputs.size() == 3 || AToAInputs.size() == 1) &&
7357
7357
"Must call this with A having 3 or 1 inputs from the A half.");
7358
- assert(BToAInputs.size() == 1 || BToAInputs.size() == 3 &&
7358
+ assert(( BToAInputs.size() == 1 || BToAInputs.size() == 3) &&
7359
7359
"Must call this with B having 1 or 3 inputs from the B half.");
7360
7360
assert(AToAInputs.size() + BToAInputs.size() == 4 &&
7361
7361
"Must call this with either 3:1 or 1:3 inputs (summing to 4).");
You can’t perform that action at this time.
0 commit comments