diff options
author | Dan Gohman <gohman@apple.com> | 2009-04-22 15:55:31 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-04-22 15:55:31 +0000 |
commit | e370c80d316e1a7928dcca0373f42653cd614f96 (patch) | |
tree | 0a9bcc815496c873c5dcf1229adcad435fba735e /docs/CodeGenerator.html | |
parent | dd92dba64425707dec7a541120112c1f911f1ed2 (diff) |
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/CodeGenerator.html')
-rw-r--r-- | docs/CodeGenerator.html | 2 |
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<(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> |