summaryrefslogtreecommitdiff
path: root/docs/TableGenFundamentals.html
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-07-28 22:09:29 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-07-28 22:09:29 +0000
commit08772dae1ef08a0d9d343c67d7a9360a97cacff1 (patch)
treea28c82482ce86a77f819a27296b2f9a8b69bdc5c /docs/TableGenFundamentals.html
parent83660c5aed4902dd218ba0f730dc7801b99b30cb (diff)
downloadllvm-08772dae1ef08a0d9d343c67d7a9360a97cacff1.tar.gz
llvm-08772dae1ef08a0d9d343c67d7a9360a97cacff1.tar.bz2
llvm-08772dae1ef08a0d9d343c67d7a9360a97cacff1.tar.xz
Put <tt> around verbatim code elements.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15310 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/TableGenFundamentals.html')
-rw-r--r--docs/TableGenFundamentals.html35
1 files changed, 17 insertions, 18 deletions
diff --git a/docs/TableGenFundamentals.html b/docs/TableGenFundamentals.html
index 8496e58048..89509c64ee 100644
--- a/docs/TableGenFundamentals.html
+++ b/docs/TableGenFundamentals.html
@@ -296,26 +296,25 @@ natural syntax and flavor for the application. The current expression forms
supported include:</p>
<ul>
-<li>? - Uninitialized field.</li>
-<li>0b1001011 - Binary integer value.</li>
-<li>07654321 - Octal integer value (indicated by a leading 0).</li>
-<li>7 - Decimal integer value.</li>
-<li>0x7F - Hexadecimal integer value.</li>
-<li>"foo" - String value.</li>
-<li>[{ .... }] - Code fragment.</li>
-<li>[ X, Y, Z ] - List value.</li>
-<li>{ a, b, c } - Initializer for a "bits&lt;3&gt;" value.</li>
-<li>value - Value reference.</li>
-<li>value{17} - Access to one or more bits of a value.</li>
-<li>DEF - Reference to a record definition.</li>
-<li>X.Y - Reference to the subfield of a value.</li>
+<li><tt>?</tt> - uninitialized field</li>
+<li><tt>0b1001011</tt> - binary integer value</li>
+<li><tt>07654321</tt> - octal integer value (indicated by a leading 0)</li>
+<li><tt>7</tt> - decimal integer value</li>
+<li><tt>0x7F</tt> - hexadecimal integer value</li>
+<li><tt>"foo"</tt> - string value</li>
+<li><tt>[{ ... }]</tt> - code fragment</li>
+<li><tt>[ X, Y, Z ]</tt> - list value.</li>
+<li><tt>{ a, b, c }</tt> - initializer for a "bits&lt;3&gt;" value</li>
+<li><tt>value</tt> - value reference</li>
+<li><tt>value{17}</tt> - access to one bit of a value</li>
+<li><tt>value{15-17}</tt> - access to multiple bits of a value</li>
+<li><tt>DEF</tt> - reference to a record definition</li>
+<li><tt>X.Y</tt> - reference to the subfield of a value</li>
<li>list[4-7,17,2-3] - A slice of the 'list' list, including elements
4,5,6,7,17,2, and 3 from it. Elements may be included multiple times.</li>
-
-<li>(DEF a, b) - A dag value. The first element is required to be a record
-definition, the remaining elements in the list may be arbitrary other values,
-including nested 'dag' values.</li>
-
+<li><tt>(DEF a, b)</tt> - a dag value. The first element is required to be a
+record definition, the remaining elements in the list may be arbitrary other
+values, including nested `<tt>dag</tt>' values.</li>
</ul>
<p>Note that all of the values have rules specifying how they convert to values