mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-25 15:41:05 +00:00
Fixed the warning introduced by r306289 to make ubuntu-gcc7.1-werror bot green.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@306369 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
029ab41a28
commit
025f924a12
@ -35072,7 +35072,7 @@ static SDValue combineLoopSADPattern(SDNode *N, SelectionDAG &DAG,
|
||||
/// that is commonly recognized as an idiom (has no register dependency), so
|
||||
/// that's better/smaller than loading a splat 1 constant.
|
||||
static SDValue combineIncDecVector(SDNode *N, SelectionDAG &DAG) {
|
||||
assert(N->getOpcode() == ISD::ADD || N->getOpcode() == ISD::SUB &&
|
||||
assert((N->getOpcode() == ISD::ADD || N->getOpcode() == ISD::SUB) &&
|
||||
"Unexpected opcode for increment/decrement transform");
|
||||
|
||||
// Pseudo-legality check: getOnesVector() expects one of these types, so bail
|
||||
|
Loading…
x
Reference in New Issue
Block a user