mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 21:30:49 +00:00
Appease GCC's -Wparentheses.
(TIL that Clang's -Wparentheses ignores 'x || y && "foo"' on purpose. Neat.) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169337 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e01b81be33
commit
105ab4fe4b
@ -3660,8 +3660,8 @@ static SDValue LowerCTPOP(SDNode *N, SelectionDAG &DAG,
|
||||
EVT VT = N->getValueType(0);
|
||||
|
||||
assert(ST->hasNEON() && "Custom ctpop lowering requires NEON.");
|
||||
assert((VT == MVT::v2i32 || VT == MVT::v4i32) ||
|
||||
(VT == MVT::v4i16 || VT == MVT::v8i16) &&
|
||||
assert((VT == MVT::v2i32 || VT == MVT::v4i32 ||
|
||||
VT == MVT::v4i16 || VT == MVT::v8i16) &&
|
||||
"Unexpected type for custom ctpop lowering");
|
||||
|
||||
if (VT.getVectorElementType() == MVT::i32)
|
||||
|
Loading…
Reference in New Issue
Block a user