[DAGCombiner] Make ShrinkLoadReplaceStoreWithStore return an SDValue instead of an...
authorCraig Topper <craig.topper@intel.com>
Tue, 23 Jul 2019 05:13:39 +0000 (05:13 +0000)
committerCraig Topper <craig.topper@intel.com>
Tue, 23 Jul 2019 05:13:39 +0000 (05:13 +0000)
commita658cb0b1289ae6137417edda47ab71e525a5a64
tree4a55aa10fb7e45c3810adf76e97d3214f23162be
parentf5247244f29340e00f5457da7a06234533f7173c
[DAGCombiner] Make ShrinkLoadReplaceStoreWithStore return an SDValue instead of an SDNode*. NFCI

The function was calling getNode() on an SDValue to return and the
caller turned the result back into a SDValue. So just return the
original SDValue to avoid this.

llvm-svn: 366779
llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp