From 0b81cdae50127aa0b987b850d03500112092d1d5 Mon Sep 17 00:00:00 2001 From: Jeff Cohen Date: Mon, 24 Oct 2005 16:54:55 +0000 Subject: [PATCH] Fix spelling of 'separate'. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23971 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CodeGenerator.html | 2 +- docs/TableGenFundamentals.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/CodeGenerator.html b/docs/CodeGenerator.html index 49139869490..406d77cbef4 100644 --- a/docs/CodeGenerator.html +++ b/docs/CodeGenerator.html @@ -1117,7 +1117,7 @@ converted to a list of MachineInstrs and the Selection DAG is destroyed.

-

Note that this phase is logically seperate from the instruction selection +

Note that this phase is logically separate from the instruction selection phase, but is tied to it closely in the code because it operates on SelectionDAGs.

diff --git a/docs/TableGenFundamentals.html b/docs/TableGenFundamentals.html index 26c3ff38dc5..daa06db1c0b 100644 --- a/docs/TableGenFundamentals.html +++ b/docs/TableGenFundamentals.html @@ -337,7 +337,7 @@ for different types. These rules allow you to assign a value like "7" to a information that TableGen collects. Records are defined with a def or class keyword, the record name, and an optional list of "template arguments". If the record has superclasses, -they are specified as a comma seperated list that starts with a colon character +they are specified as a comma separated list that starts with a colon character (":"). If value definitions or let expressions are needed for the class, they are enclosed in curly braces ("{}"); otherwise, the record ends with a semicolon. Here is a simple TableGen @@ -517,7 +517,7 @@ multiple records at a time, and may be useful in certain other cases. File-scope let expressions are really just another way that TableGen allows the end-user to factor out commonality from the records.

-

File-scope "let" expressions take a comma-seperated list of bindings to +

File-scope "let" expressions take a comma-separated list of bindings to apply, and one of more records to bind the values in. Here are some examples:

-- 2.34.1