diff options
author | Dan Gohman <gohman@apple.com> | 2009-01-25 16:21:38 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-01-25 16:21:38 +0000 |
commit | 74692c0d65d92865674ff8e0491a21b98950284a (patch) | |
tree | 3b3c92965ba1348bd97dd93ca141e93b8e9d39ab | |
parent | e77f89de8cb6690ac45b87b03c588e9d287c1eeb (diff) | |
download | external_llvm-74692c0d65d92865674ff8e0491a21b98950284a.zip external_llvm-74692c0d65d92865674ff8e0491a21b98950284a.tar.gz external_llvm-74692c0d65d92865674ff8e0491a21b98950284a.tar.bz2 |
Whitespace tidiments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62963 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index ecdbf21..9204410 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -952,7 +952,7 @@ SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV, 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 @@ SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList, return NULL; } - /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead. /// This can cause recursive merging of nodes in the DAG. /// |