summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-04-22 15:55:31 +0000
committerDan Gohman <gohman@apple.com>2009-04-22 15:55:31 +0000
commite370c80d316e1a7928dcca0373f42653cd614f96 (patch)
tree0a9bcc815496c873c5dcf1229adcad435fba735e /docs
parentdd92dba64425707dec7a541120112c1f911f1ed2 (diff)
downloadllvm-e370c80d316e1a7928dcca0373f42653cd614f96.tar.gz
llvm-e370c80d316e1a7928dcca0373f42653cd614f96.tar.bz2
llvm-e370c80d316e1a7928dcca0373f42653cd614f96.tar.xz
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
Diffstat (limited to 'docs')
-rw-r--r--docs/CodeGenerator.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/CodeGenerator.html b/docs/CodeGenerator.html
index 2471e9d20c..b4edbd7356 100644
--- a/docs/CodeGenerator.html
+++ b/docs/CodeGenerator.html
@@ -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>