From: Gabor Greif Date: Fri, 11 Apr 2008 09:34:57 +0000 (+0000) Subject: detabify X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=78256a199edba827b5356fcd041f60f92c9f205f;p=oota-llvm.git detabify git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49524 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index a1d6c779b9b..f096c70a3e4 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); }