diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-27 07:49:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-27 07:49:39 +0000 |
commit | fdec1d5f2418d38f540c9a9adc51287eda74eb2c (patch) | |
tree | dae924b420ef3eab97dc5d241714274e89a08b76 /docs/TableGenFundamentals.html | |
parent | 105d26acb4158daea4e54919cfd12545a3d901ea (diff) |
Document new syntax
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15265 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/TableGenFundamentals.html')
-rw-r--r-- | docs/TableGenFundamentals.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/TableGenFundamentals.html b/docs/TableGenFundamentals.html index d5e7075b21..8496e58048 100644 --- a/docs/TableGenFundamentals.html +++ b/docs/TableGenFundamentals.html @@ -309,6 +309,8 @@ supported include:</p> <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>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, |