[llvm-commits] [llvm] r141243 - /llvm/trunk/docs/TableGenFundamentals.html
David Greene
greened at obbligato.org
Wed Oct 5 16:16:45 PDT 2011
Author: greened
Date: Wed Oct 5 18:16:44 2011
New Revision: 141243
URL: http://llvm.org/viewvc/llvm-project?rev=141243&view=rev
Log:
Fix a typo.
Fix the argument passed in the multidef example.
Modified:
llvm/trunk/docs/TableGenFundamentals.html
Modified: llvm/trunk/docs/TableGenFundamentals.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/TableGenFundamentals.html?rev=141243&r1=141242&r2=141243&view=diff
==============================================================================
--- llvm/trunk/docs/TableGenFundamentals.html (original)
+++ llvm/trunk/docs/TableGenFundamentals.html Wed Oct 5 18:16:44 2011
@@ -784,7 +784,7 @@
<b>def</b> ONE : Base<values[0]>;
<b>def</b> TWO : Base<values[1]>;
- <b>multidef</b> COUNT<values, int v, 2> : Base<:v>;
+ <b>multidef</b> COUNT<values, int v, 2> : Base<v>;
}
<b>defm</b> List : Multi<[1, 2, 3, 4, 5, 6]<;
More information about the llvm-commits
mailing list