diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-22 04:01:18 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-22 04:01:18 +0000 |
commit | 774511633d24db71d46055b52390b17c37942b48 (patch) | |
tree | 6af36d99c62d03212fa6436561141803ca28fbd3 /llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp | |
parent | 1fabffbf37f58c1c4a500a3b3f5c7595b6a404f9 (diff) | |
download | bcm5719-llvm-774511633d24db71d46055b52390b17c37942b48.tar.gz bcm5719-llvm-774511633d24db71d46055b52390b17c37942b48.zip |
Convert tabs to spaces
llvm-svn: 21439
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp b/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp index e9b324aed64..26544cebed4 100644 --- a/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp +++ b/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp @@ -180,11 +180,11 @@ void EquivClassGraphs::buildIndirectFunctionSets(Module &M) { // This is the first callee from this call site. LastInst = I->first; FirstFunc = I->second; - // Instead of storing the lastInst For Indirection call Sites we store - // the DSNode for the function ptr arguemnt - Function *thisFunc = LastInst->getParent()->getParent(); + // Instead of storing the lastInst For Indirection call Sites we store + // the DSNode for the function ptr arguemnt + Function *thisFunc = LastInst->getParent()->getParent(); DSGraph &TFG = CBU->getDSGraph(*thisFunc); - DSNode *calleeNode = TFG.getNodeForValue(CS.getCalledValue()).getNode(); + DSNode *calleeNode = TFG.getNodeForValue(CS.getCalledValue()).getNode(); OneCalledFunction[calleeNode] = FirstFunc; FuncECs.insert(I->second); } else { @@ -192,9 +192,9 @@ void EquivClassGraphs::buildIndirectFunctionSets(Module &M) { // Union the callee in with the other functions. FuncECs.unionSets(FirstFunc, I->second); #ifndef NDEBUG - Function *thisFunc = LastInst->getParent()->getParent(); + Function *thisFunc = LastInst->getParent()->getParent(); DSGraph &TFG = CBU->getDSGraph(*thisFunc); - DSNode *calleeNode = TFG.getNodeForValue(CS.getCalledValue()).getNode(); + DSNode *calleeNode = TFG.getNodeForValue(CS.getCalledValue()).getNode(); assert(OneCalledFunction.count(calleeNode) > 0 && "Missed a call?"); #endif } |