De-tabify.
authorBill Wendling <isanbard@gmail.com>
Tue, 26 Feb 2008 10:51:52 +0000 (10:51 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 26 Feb 2008 10:51:52 +0000 (10:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47598 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/IPA/Andersens.cpp
lib/CodeGen/VirtRegMap.cpp

index 22f151b0953f8c4ea66c53bea4ebeb80af58d0fd..345b8bd52b3ac09bdab1761a6ee0cfe9d17826a5 100644 (file)
@@ -2347,15 +2347,15 @@ void Andersens::SolveConstraints() {
         unsigned DestVar = *bi;
         unsigned Rep = FindNode(DestVar);
 
-       // If we ended up with this node as our destination, or we've already
-       // got an edge for the representative, delete the current edge.
-       if (Rep == CurrNodeIndex ||
-           (Rep != DestVar && NewEdges.test(Rep))) {
-           ToErase.set(DestVar);
-           continue;
-       }
+        // If we ended up with this node as our destination, or we've already
+        // got an edge for the representative, delete the current edge.
+        if (Rep == CurrNodeIndex ||
+            (Rep != DestVar && NewEdges.test(Rep))) {
+          ToErase.set(DestVar);
+          continue;
+        }
         
-       std::pair<unsigned,unsigned> edge(CurrNodeIndex,Rep);
+        std::pair<unsigned,unsigned> edge(CurrNodeIndex,Rep);
         
         // This is where we do lazy cycle detection.
         // If this is a cycle candidate (equal points-to sets and this
index 227ac0c738855ac1bb0016ba4190acd000c06b72..48e5a16a509ae17e69844a04d9112699c5737355 100644 (file)
@@ -779,7 +779,7 @@ namespace {
 ///     xorl  %edi, %eax
 ///     movl  %eax, -32(%ebp)
 ///     movl  -36(%ebp), %eax
-///    orl   %eax, -32(%ebp)
+///     orl   %eax, -32(%ebp)
 /// ==>
 ///     xorl  %edi, %eax
 ///     orl   -36(%ebp), %eax