diff options
author | Dan Gohman <gohman@apple.com> | 2009-01-16 21:47:21 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-01-16 21:47:21 +0000 |
commit | b6a6164832572b2daeba604d6378ad49128d212f (patch) | |
tree | b04a14beaad142cecc10c493f591c0f24b0b5132 /lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | 3326f160360bbba49d6acc1a80d5eb300eeb8233 (diff) |
Use the getNode() accessor instead of accessing the Node
member directly, which is private as of r55504.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62364 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 46c62ca56b..f8b914268c 100644 --- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -3358,7 +3358,7 @@ SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) { : DAG.getExtLoad(ExtType, VT, LN0->getChain(), NewPtr, LN0->getSrcValue(), LN0->getSrcValueOffset() + PtrOff, EVT, LN0->isVolatile(), NewAlign); - AddToWorkList(Load.Node); + AddToWorkList(Load.getNode()); if (CombineSRL) { WorkListRemover DeadNodes(*this); DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1), |