1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Remove dead variable. Fix 80 column violations.

llvm-svn: 31412
This commit is contained in:
Reid Spencer 2006-11-03 03:30:34 +00:00
parent 3459a4b85b
commit 8cac48e619

View File

@ -176,7 +176,6 @@ namespace {
bool CombineToIndexedLoadStore(SDNode *N) {
SDOperand Ptr;
bool isLoad = true;
if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Ptr = LD->getBasePtr();
} else
@ -200,7 +199,8 @@ namespace {
// themselves use of loads / stores.
bool OffIsAMImm = Offset.getOpcode() == ISD::Constant &&
TLI.isLegalAddressImmediate(cast<ConstantSDNode>(Offset)->getValue());
TLI.isLegalAddressImmediate(
cast<ConstantSDNode>(Offset)->getValue());
// Check for #3.
if (OffIsAMImm && BasePtr.Val->use_size() > 1) {
@ -209,7 +209,7 @@ namespace {
SDNode *Use = *I;
if (Use == Ptr.Val)
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(),
EE = Use->use_end(); II != EE; ++II) {
SDNode *UseUse = *II;