ISD::ADD_PARTS is gone; use ISD::SMUL_LOHI as an example instead.
authorDan Gohman <gohman@apple.com>
Wed, 22 Apr 2009 15:55:31 +0000 (15:55 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 22 Apr 2009 15:55:31 +0000 (15:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69804 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CodeGenerator.html

index 2471e9d20cc495d84b53ecc88b51d1ddea60daea..b4edbd7356409fa324dcefba3ca91fd343bd088d 100644 (file)
@@ -1161,7 +1161,7 @@ def : Pat&lt;(i32 imm:$imm),
 
 <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>