[llvm-commits] [llvm] r47598 - in /llvm/trunk/lib: Analysis/IPA/Andersens.cpp CodeGen/VirtRegMap.cpp

Bill Wendling isanbard at gmail.com
Tue Feb 26 02:51:54 PST 2008


Author: void
Date: Tue Feb 26 04:51:52 2008
New Revision: 47598

URL: http://llvm.org/viewvc/llvm-project?rev=47598&view=rev
Log:
De-tabify.

Modified:
    llvm/trunk/lib/Analysis/IPA/Andersens.cpp
    llvm/trunk/lib/CodeGen/VirtRegMap.cpp

Modified: llvm/trunk/lib/Analysis/IPA/Andersens.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/IPA/Andersens.cpp?rev=47598&r1=47597&r2=47598&view=diff

==============================================================================
--- llvm/trunk/lib/Analysis/IPA/Andersens.cpp (original)
+++ llvm/trunk/lib/Analysis/IPA/Andersens.cpp Tue Feb 26 04:51:52 2008
@@ -2347,15 +2347,15 @@
         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

Modified: llvm/trunk/lib/CodeGen/VirtRegMap.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/VirtRegMap.cpp?rev=47598&r1=47597&r2=47598&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/VirtRegMap.cpp (original)
+++ llvm/trunk/lib/CodeGen/VirtRegMap.cpp Tue Feb 26 04:51:52 2008
@@ -779,7 +779,7 @@
 ///     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





More information about the llvm-commits mailing list