diff options
author | Gabor Greif <ggreif@gmail.com> | 2008-04-11 09:34:57 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2008-04-11 09:34:57 +0000 |
commit | 78256a199edba827b5356fcd041f60f92c9f205f (patch) | |
tree | e29567db2b2281b146cbf83da93d8739322718f1 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | c008c5e08c7ce8c2d1508ff8cd0031b8677e3ba6 (diff) |
detabify
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49524 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index a1d6c779b9..f096c70a3e 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -3507,7 +3507,7 @@ void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To, for (; Op != E; ++Op) { if (*Op == From) { From.Val->removeUser(Op-User->op_begin(), User); - *Op = To; + *Op = To; Op->setUser(User); To.Val->addUser(Op-User->op_begin(), User); } |