Skip to content

Commit 2b3cbac

Browse files
committed
Remove heinous tabs.
llvm-svn: 103700
1 parent 3230f0a commit 2b3cbac

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

llvm/lib/Transforms/IPO/MergeFunctions.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ namespace {
9494

9595
private:
9696
bool isEquivalentGEP(const GetElementPtrInst *GEP1,
97-
const GetElementPtrInst *GEP2);
97+
const GetElementPtrInst *GEP2);
9898

9999
bool equals(const BasicBlock *BB1, const BasicBlock *BB2);
100100
bool equals(const Function *F, const Function *G);
@@ -355,7 +355,7 @@ bool MergeFunctions::compare(const Value *V1, const Value *V2) {
355355
if (Domain1 != Domain2)
356356
if (Domain1 != LHS && Domain1 != RHS)
357357
if (Domain2 != LHS && Domain2 != RHS)
358-
return false;
358+
return false;
359359

360360
IDMap &Map1 = Domains[Domain1];
361361
unsigned long &ID1 = Map1[V1];
@@ -383,10 +383,10 @@ bool MergeFunctions::equals(const BasicBlock *BB1, const BasicBlock *BB2) {
383383
const GetElementPtrInst *GEP2 = cast<GetElementPtrInst>(GI);
384384

385385
if (!compare(GEP1->getPointerOperand(), GEP2->getPointerOperand()))
386-
return false;
386+
return false;
387387

388388
if (!isEquivalentGEP(GEP1, GEP2))
389-
return false;
389+
return false;
390390
} else {
391391
if (!isEquivalentOperation(FI, GI))
392392
return false;
@@ -395,8 +395,8 @@ bool MergeFunctions::equals(const BasicBlock *BB1, const BasicBlock *BB2) {
395395
Value *OpF = FI->getOperand(i);
396396
Value *OpG = GI->getOperand(i);
397397

398-
if (!compare(OpF, OpG))
399-
return false;
398+
if (!compare(OpF, OpG))
399+
return false;
400400

401401
if (OpF->getValueID() != OpG->getValueID() ||
402402
!isEquivalentType(OpF->getType(), OpG->getType()))
@@ -472,7 +472,7 @@ bool MergeFunctions::equals(const Function *F, const Function *G) {
472472
assert(FTI->getNumSuccessors() == GTI->getNumSuccessors());
473473
for (unsigned i = 0, e = FTI->getNumSuccessors(); i != e; ++i) {
474474
if (!VisitedBBs.insert(FTI->getSuccessor(i)))
475-
continue;
475+
continue;
476476
FBBs.push_back(FTI->getSuccessor(i));
477477
GBBs.push_back(GTI->getSuccessor(i));
478478
}

0 commit comments

Comments
 (0)