mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Fix uninitialized variable warning.
llvm-svn: 147675
This commit is contained in:
parent
4da10009fd
commit
990edbc5f1
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user