remove mysterious escaped newlines.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60211 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-11-28 21:16:44 +00:00
parent f5102a0f08
commit 57d4012f65

View File

@ -120,7 +120,7 @@ Instruction* MemoryDependenceAnalysis::getCallSiteDependency(CallSite C,
} else if (AllocationInst* AI = dyn_cast<AllocationInst>(QI)) { } else if (AllocationInst* AI = dyn_cast<AllocationInst>(QI)) {
pointer = AI; pointer = AI;
if (ConstantInt* C = dyn_cast<ConstantInt>(AI->getArraySize())) if (ConstantInt* C = dyn_cast<ConstantInt>(AI->getArraySize()))
pointerSize = C->getZExtValue() * \ pointerSize = C->getZExtValue() *
TD.getABITypeSize(AI->getAllocatedType()); TD.getABITypeSize(AI->getAllocatedType());
else else
pointerSize = ~0UL; pointerSize = ~0UL;
@ -398,7 +398,7 @@ Instruction* MemoryDependenceAnalysis::getDependency(Instruction* query,
} else if (AllocationInst* AI = dyn_cast<AllocationInst>(QI)) { } else if (AllocationInst* AI = dyn_cast<AllocationInst>(QI)) {
pointer = AI; pointer = AI;
if (ConstantInt* C = dyn_cast<ConstantInt>(AI->getArraySize())) if (ConstantInt* C = dyn_cast<ConstantInt>(AI->getArraySize()))
pointerSize = C->getZExtValue() * \ pointerSize = C->getZExtValue() *
TD.getABITypeSize(AI->getAllocatedType()); TD.getABITypeSize(AI->getAllocatedType());
else else
pointerSize = ~0UL; pointerSize = ~0UL;
@ -533,9 +533,9 @@ void MemoryDependenceAnalysis::removeInstruction(Instruction* rem) {
if (RI == (BasicBlock::iterator)rem) RI++; if (RI == (BasicBlock::iterator)rem) RI++;
newDep = RI; newDep = RI;
} else if ( (depGraphEntry->second.first == NonLocal || } else if ((depGraphEntry->second.first == NonLocal ||
depGraphEntry->second.first == None ) && depGraphEntry->second.first == None) &&
depGraphEntry->second.second ) { depGraphEntry->second.second) {
// If we have a confirmed non-local flag, use it // If we have a confirmed non-local flag, use it
newDep = depGraphEntry->second.first; newDep = depGraphEntry->second.first;
} else { } else {