From: David Greene Date: Wed, 5 Oct 2011 23:16:44 +0000 (+0000) Subject: Fix a typo. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4413b509e8b9c376e91e90354924ff353cb4f7c3;p=oota-llvm.git 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 --- diff --git a/docs/TableGenFundamentals.html b/docs/TableGenFundamentals.html index c5e8d9a1e43..f5b7e4ab577 100644 --- a/docs/TableGenFundamentals.html +++ b/docs/TableGenFundamentals.html @@ -784,7 +784,7 @@ several defs given a list of values. def ONE : Base<values[0]>; def TWO : Base<values[1]>; - multidef COUNT<values, int v, 2> : Base<:v>; + multidef COUNT<values, int v, 2> : Base<v>; } defm List : Multi<[1, 2, 3, 4, 5, 6]<;