1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Fix a typo.

Fix the argument passed in the multidef example.

llvm-svn: 141243
This commit is contained in:
David Greene 2011-10-05 23:16:44 +00:00
parent f6b87ae29a
commit fa0c5e33b7

View File

@ -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;;