diff options
author | Devang Patel <dpatel@apple.com> | 2011-05-23 22:04:42 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-05-23 22:04:42 +0000 |
commit | 9728ea2447e689ae6e884cf044f226b99c4a47da (patch) | |
tree | 6544cee3afe1460ed08be407f339204641eb46a8 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | bdd2ce9741643bab00ba2869852f6babbe072cf0 (diff) |
Revert 121907 (it causes llc crash) and apply original patch from PR9817.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131926 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 7e4c12b052..dd33205c5d 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -5150,9 +5150,6 @@ void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To, "Cannot replace with this method!"); assert(From != To.getNode() && "Cannot replace uses of with self"); - // Transfer debug values. - TransferDbgValues(FromN, To); - // Iterate over all the existing uses of From. New uses will be added // to the beginning of the use list, which we avoid visiting. // This specifically avoids visiting uses of From that arise while the |