Insert parens to avoid a warning:

suggest parentheses around arithmetic in operand of '^' [-Wparentheses]

llvm-svn: 215101
This commit is contained in:
Alexander Kornienko 2014-08-07 12:09:34 +00:00
parent b677f7ac4b
commit 7151ad7762
1 changed files with 1 additions and 1 deletions

View File

@ -7549,7 +7549,7 @@ static SDValue lowerV8I16SingleInputVectorShuffle(
if (M == (InputsFixed[0] ^ 1) + SourceOffset)
M = InputsFixed[1] + SourceOffset;
else if (M == InputsFixed[1] + SourceOffset)
M = InputsFixed[0] ^ 1 + SourceOffset;
M = (InputsFixed[0] ^ 1) + SourceOffset;
InputsFixed[1] = InputsFixed[0] ^ 1;
}