summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2011-10-05 23:16:44 +0000
committerDavid Greene <greened@obbligato.org>2011-10-05 23:16:44 +0000
commit4413b509e8b9c376e91e90354924ff353cb4f7c3 (patch)
treefb01057185e7e2cba734cfc2fec73ffb00575e12 /docs
parentcaa25c81cd12f8a25b6cb7a3cba865a0dbcd4eaf (diff)
downloadllvm-4413b509e8b9c376e91e90354924ff353cb4f7c3.tar.gz
llvm-4413b509e8b9c376e91e90354924ff353cb4f7c3.tar.bz2
llvm-4413b509e8b9c376e91e90354924ff353cb4f7c3.tar.xz
Fix a typo.
Fix the argument passed in the multidef example. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141243 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/TableGenFundamentals.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/TableGenFundamentals.html b/docs/TableGenFundamentals.html
index c5e8d9a1e4..f5b7e4ab57 100644
--- a/docs/TableGenFundamentals.html
+++ b/docs/TableGenFundamentals.html
@@ -784,7 +784,7 @@ several defs given a list of values.
<b>def</b> ONE : Base&lt;values[0]&gt;;
<b>def</b> TWO : Base&lt;values[1]&gt;;
- <b>multidef</b> COUNT&lt;values, int v, 2&gt; : Base&lt:v&gt;;
+ <b>multidef</b> COUNT&lt;values, int v, 2&gt; : Base&lt;v&gt;;
}
<b>defm</b> List : Multi&lt;[1, 2, 3, 4, 5, 6]&lt;;