forked from OSchip/llvm-project
Insert parens to avoid a warning:
suggest parentheses around arithmetic in operand of '^' [-Wparentheses] llvm-svn: 215101
This commit is contained in:
parent
b677f7ac4b
commit
7151ad7762
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue