forked from OSchip/llvm-project
Shut up GCC warning about operator precedence. NFC.
Technically, this is actually changes the expression and the original assert was "wrong", but since the conjunction is with true, it doesn't matter in this case. llvm-svn: 293709
This commit is contained in:
parent
97718e6081
commit
e18aad39ab
|
@ -1175,9 +1175,9 @@ void HexagonLoopIdiomRecognize::collectStores(Loop *CurLoop, BasicBlock *BB,
|
|||
|
||||
bool HexagonLoopIdiomRecognize::processCopyingStore(Loop *CurLoop,
|
||||
StoreInst *SI, const SCEV *BECount) {
|
||||
assert(SI->isSimple() || (SI->isVolatile() && HexagonVolatileMemcpy) &&
|
||||
"Expected only non-volatile stores, or Hexagon-specific memcpy"
|
||||
"to volatile destination.");
|
||||
assert((SI->isSimple() || (SI->isVolatile() && HexagonVolatileMemcpy)) &&
|
||||
"Expected only non-volatile stores, or Hexagon-specific memcpy"
|
||||
"to volatile destination.");
|
||||
|
||||
Value *StorePtr = SI->getPointerOperand();
|
||||
auto *StoreEv = cast<SCEVAddRecExpr>(SE->getSCEV(StorePtr));
|
||||
|
|
Loading…
Reference in New Issue