1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

[X86] Remove else after return. NFC

llvm-svn: 272871
This commit is contained in:
Craig Topper 2016-06-16 03:58:42 +00:00
parent 23ad50ee9d
commit 17cc3aa829

View File

@ -10938,10 +10938,9 @@ static SDValue lowerShuffleAsRepeatedMaskAndLanePermute(
int &R = RepeatMask[j];
if (0 != ((M % NumElts) / NumLaneElts))
return false;
else if (0 <= R && R != M)
if (0 <= R && R != M)
return false;
else
R = M;
R = M;
}
return true;
};