mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 07:32:52 +00:00
Remove dead variable. Fix 80 column violations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31412 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f05696c1b5
commit
b8f4e0aa17
@ -176,7 +176,6 @@ namespace {
|
|||||||
|
|
||||||
bool CombineToIndexedLoadStore(SDNode *N) {
|
bool CombineToIndexedLoadStore(SDNode *N) {
|
||||||
SDOperand Ptr;
|
SDOperand Ptr;
|
||||||
bool isLoad = true;
|
|
||||||
if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
|
if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
|
||||||
Ptr = LD->getBasePtr();
|
Ptr = LD->getBasePtr();
|
||||||
} else
|
} else
|
||||||
@ -200,7 +199,8 @@ namespace {
|
|||||||
// themselves use of loads / stores.
|
// themselves use of loads / stores.
|
||||||
|
|
||||||
bool OffIsAMImm = Offset.getOpcode() == ISD::Constant &&
|
bool OffIsAMImm = Offset.getOpcode() == ISD::Constant &&
|
||||||
TLI.isLegalAddressImmediate(cast<ConstantSDNode>(Offset)->getValue());
|
TLI.isLegalAddressImmediate(
|
||||||
|
cast<ConstantSDNode>(Offset)->getValue());
|
||||||
|
|
||||||
// Check for #3.
|
// Check for #3.
|
||||||
if (OffIsAMImm && BasePtr.Val->use_size() > 1) {
|
if (OffIsAMImm && BasePtr.Val->use_size() > 1) {
|
||||||
@ -209,7 +209,7 @@ namespace {
|
|||||||
SDNode *Use = *I;
|
SDNode *Use = *I;
|
||||||
if (Use == Ptr.Val)
|
if (Use == Ptr.Val)
|
||||||
continue;
|
continue;
|
||||||
if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB) {
|
if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
|
||||||
for (SDNode::use_iterator II = Use->use_begin(),
|
for (SDNode::use_iterator II = Use->use_begin(),
|
||||||
EE = Use->use_end(); II != EE; ++II) {
|
EE = Use->use_end(); II != EE; ++II) {
|
||||||
SDNode *UseUse = *II;
|
SDNode *UseUse = *II;
|
||||||
|
Loading…
Reference in New Issue
Block a user