forked from OSchip/llvm-project
Initializing to false makes better sense. Thanks, David.
llvm-svn: 147679
This commit is contained in:
parent
598f3d219d
commit
64dc8aa44f
|
@ -645,7 +645,7 @@ bool HexagonTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
|
|||
return false;
|
||||
}
|
||||
|
||||
bool isInc = 0;
|
||||
bool isInc = false;
|
||||
bool isLegal = getIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
|
||||
isInc, DAG);
|
||||
// ShiftAmount = number of left-shifted bits in the Hexagon instruction.
|
||||
|
|
Loading…
Reference in New Issue