1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Fix uninitialized variable warning.

llvm-svn: 147675
This commit is contained in:
Chad Rosier 2012-01-06 19:59:58 +00:00
parent 4da10009fd
commit 990edbc5f1

View File

@ -645,7 +645,7 @@ bool HexagonTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
return false;
}
bool isInc;
bool isInc = 0;
bool isLegal = getIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
isInc, DAG);
// ShiftAmount = number of left-shifted bits in the Hexagon instruction.