[llvm-commits] [llvm] r62963 -	/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
    Dan Gohman 
    gohman at apple.com
       
    Sun Jan 25 08:21:39 PST 2009
    
    
  
Author: djg
Date: Sun Jan 25 10:21:38 2009
New Revision: 62963
URL: http://llvm.org/viewvc/llvm-project?rev=62963&view=rev
Log:
Whitespace tidiments.
Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp?rev=62963&r1=62962&r2=62963&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp Sun Jan 25 10:21:38 2009
@@ -952,7 +952,7 @@
   ID.AddInteger(Offset);
   void *IP = 0;
   if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
-   return SDValue(E, 0);
+    return SDValue(E, 0);
   SDNode *N = NodeAllocator.Allocate<GlobalAddressSDNode>();
   new (N) GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
   CSEMap.InsertNode(N, IP);
@@ -4398,7 +4398,6 @@
   return NULL;
 }
 
-
 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
 /// This can cause recursive merging of nodes in the DAG.
 ///
    
    
More information about the llvm-commits
mailing list