Skip to content

Commit 8b19658

Browse files
committed
Address nit of adding else if
1 parent e122832 commit 8b19658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/PowerPC/PPCISelLowering.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15699,7 +15699,7 @@ static void fixupShuffleMaskForPermutedSToV(
1569915699
int Idx = ShuffV[I];
1570015700
if (Idx >= LHSFirstElt && Idx <= LHSLastElt)
1570115701
ShuffV[I] += LHSEltFixup;
15702-
if (Idx >= RHSFirstElt && Idx <= RHSLastElt)
15702+
else if (Idx >= RHSFirstElt && Idx <= RHSLastElt)
1570315703
ShuffV[I] += RHSEltFixup;
1570415704
}
1570515705
}

0 commit comments

Comments
 (0)