[llvm-commits] [llvm] r60211 - /llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp

Chris Lattner sabre at nondot.org
Fri Nov 28 13:16:48 PST 2008


Author: lattner
Date: Fri Nov 28 15:16:44 2008
New Revision: 60211

URL: http://llvm.org/viewvc/llvm-project?rev=60211&view=rev
Log:
remove mysterious escaped newlines.

Modified:
    llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp

Modified: llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp?rev=60211&r1=60210&r2=60211&view=diff

==============================================================================
--- llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp (original)
+++ llvm/trunk/lib/Analysis/MemoryDependenceAnalysis.cpp Fri Nov 28 15:16:44 2008
@@ -120,7 +120,7 @@
     } else if (AllocationInst* AI = dyn_cast<AllocationInst>(QI)) {
       pointer = AI;
       if (ConstantInt* C = dyn_cast<ConstantInt>(AI->getArraySize()))
-        pointerSize = C->getZExtValue() * \
+        pointerSize = C->getZExtValue() *
                       TD.getABITypeSize(AI->getAllocatedType());
       else
         pointerSize = ~0UL;
@@ -398,7 +398,7 @@
     } else if (AllocationInst* AI = dyn_cast<AllocationInst>(QI)) {
       pointer = AI;
       if (ConstantInt* C = dyn_cast<ConstantInt>(AI->getArraySize()))
-        pointerSize = C->getZExtValue() * \
+        pointerSize = C->getZExtValue() * 
                       TD.getABITypeSize(AI->getAllocatedType());
       else
         pointerSize = ~0UL;
@@ -533,9 +533,9 @@
       if (RI == (BasicBlock::iterator)rem) RI++;
       
       newDep = RI;
-    } else if ( (depGraphEntry->second.first == NonLocal ||
-                 depGraphEntry->second.first == None ) &&
-               depGraphEntry->second.second ) {
+    } else if ((depGraphEntry->second.first == NonLocal ||
+                depGraphEntry->second.first == None) &&
+               depGraphEntry->second.second) {
       // If we have a confirmed non-local flag, use it
       newDep = depGraphEntry->second.first;
     } else {





More information about the llvm-commits mailing list