aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-10-08 17:54:24 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-10-08 17:54:24 +0000
commitbd8c49cfd48216b5f642272360d753a11cd0a4b3 (patch)
treefcfb6461f49b801d8b7cbc1f3ad0027fdef68cb0
parent1c452fb044a2fd7da6f1ba29d342994b6f1460b5 (diff)
downloadexternal_llvm-bd8c49cfd48216b5f642272360d753a11cd0a4b3.zip
external_llvm-bd8c49cfd48216b5f642272360d753a11cd0a4b3.tar.gz
external_llvm-bd8c49cfd48216b5f642272360d753a11cd0a4b3.tar.bz2
LLVM does not use the old style simple isel any more.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42758 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/CodeGenerator.html7
1 files changed, 2 insertions, 5 deletions
diff --git a/docs/CodeGenerator.html b/docs/CodeGenerator.html
index bc82b46..b454b6b 100644
--- a/docs/CodeGenerator.html
+++ b/docs/CodeGenerator.html
@@ -748,11 +748,8 @@ explains how they work and some of the rationale behind their design.</p>
<p>
Instruction Selection is the process of translating LLVM code presented to the
code generator into target-specific machine instructions. There are several
-well-known ways to do this in the literature. In LLVM there are two main forms:
-the SelectionDAG based instruction selector framework and an old-style 'simple'
-instruction selector, which effectively peephole selects each LLVM instruction
-into a series of machine instructions. We recommend that all targets use the
-SelectionDAG infrastructure.
+well-known ways to do this in the literature. LLVM uses a SelectionDAG based
+instruction selector.
</p>
<p>Portions of the DAG instruction selector are generated from the target