[llvm] r319301 - Comment fix in SelectionDAG.h
Jonas Paulsson via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 29 01:16:38 PST 2017
Author: jonpa
Date: Wed Nov 29 01:16:37 2017
New Revision: 319301
URL: http://llvm.org/viewvc/llvm-project?rev=319301&view=rev
Log:
Comment fix in SelectionDAG.h
/// Replace any uses of From with To, leaving
- /// uses of other values produced by From.Val alone.
+ /// uses of other values produced by From.getNode() alone.
void ReplaceAllUsesOfValueWith(SDValue From, SDValue To);
(this is what it says in the .cpp file above this method)
Modified:
llvm/trunk/include/llvm/CodeGen/SelectionDAG.h
Modified: llvm/trunk/include/llvm/CodeGen/SelectionDAG.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SelectionDAG.h?rev=319301&r1=319300&r2=319301&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAG.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAG.h Wed Nov 29 01:16:37 2017
@@ -1247,7 +1247,7 @@ public:
void ReplaceAllUsesWith(SDNode *From, const SDValue *To);
/// Replace any uses of From with To, leaving
- /// uses of other values produced by From.Val alone.
+ /// uses of other values produced by From.getNode() alone.
void ReplaceAllUsesOfValueWith(SDValue From, SDValue To);
/// Like ReplaceAllUsesOfValueWith, but for multiple values at once.
More information about the llvm-commits
mailing list