ISD::ADD_PARTS is gone; use ISD::SMUL_LOHI as an example instead.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69804 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/CodeGenerator.html b/docs/CodeGenerator.html
index 2471e9d..b4edbd7 100644
--- a/docs/CodeGenerator.html
+++ b/docs/CodeGenerator.html
@@ -1161,7 +1161,7 @@
 
 <ul>
   <li>Overall, there is no way to define or match SelectionDAG nodes that define
-      multiple values (e.g. <tt>ADD_PARTS</tt>, <tt>LOAD</tt>, <tt>CALL</tt>,
+      multiple values (e.g. <tt>SMUL_LOHI</tt>, <tt>LOAD</tt>, <tt>CALL</tt>,
       etc).  This is the biggest reason that you currently still <em>have
       to</em> write custom C++ code for your instruction selector.</li>