1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

[x86] Use a more helpful parenthesizing of these comparisons. Silences

a -Wparentheses complaint from GCC.

llvm-svn: 229300
This commit is contained in:
Chandler Carruth 2015-02-15 10:15:20 +00:00
parent 5c0c778648
commit c868c80ecb

View File

@ -8599,9 +8599,9 @@ static bool isSingleSHUFPSMask(ArrayRef<int> Mask) {
// To lower with a single SHUFPS we need to have the low half and high half // To lower with a single SHUFPS we need to have the low half and high half
// each requiring a single input. // each requiring a single input.
if (Mask[0] != -1 && Mask[1] != -1 && (Mask[0] < 4 != Mask[1] < 4)) if (Mask[0] != -1 && Mask[1] != -1 && (Mask[0] < 4) != (Mask[1] < 4))
return false; return false;
if (Mask[2] != -1 && Mask[3] != -1 && (Mask[2] < 4 != Mask[3] < 4)) if (Mask[2] != -1 && Mask[3] != -1 && (Mask[2] < 4) != (Mask[3] < 4))
return false; return false;
return true; return true;