mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Fix uninitialized variable warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147675 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7eabae3f50
commit
99eecd3676
@ -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