summaryrefslogtreecommitdiff
path: root/docs/TableGen
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2013-02-01 03:50:20 +0000
committerSean Silva <silvas@purdue.edu>2013-02-01 03:50:20 +0000
commitf1f57c5c1a53cfcb0de23660a4d607ed57e0525a (patch)
tree8adea7e92b56f2f4dcf06fe93d923c9caa461b58 /docs/TableGen
parentde4b0a083a668985152dac5dc1dcfb0466540d0c (diff)
downloadllvm-f1f57c5c1a53cfcb0de23660a4d607ed57e0525a.tar.gz
llvm-f1f57c5c1a53cfcb0de23660a4d607ed57e0525a.tar.bz2
llvm-f1f57c5c1a53cfcb0de23660a4d607ed57e0525a.tar.xz
[docs] Fixup fallout from other grammar fixup.
My "excuse" for not refactoring the grammar here is to not diverge too far from the grammar in the comments of TGParser.cpp, since I'm not taking on the quest of majorly refactoring TGParser.cpp at the moment. One benefit of doing this is that Ideas for refactoring and clarifying the grammar in this document should translate almost immediately to beneficial refactorings that can be made to TGParser.cpp. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174144 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/TableGen')
-rw-r--r--docs/TableGen/LangRef.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/TableGen/LangRef.rst b/docs/TableGen/LangRef.rst
index 0be0681482..c9e1efba03 100644
--- a/docs/TableGen/LangRef.rst
+++ b/docs/TableGen/LangRef.rst
@@ -343,7 +343,7 @@ a ``foreach``.
--------
.. productionlist::
- Defm: "defm" `TokIdentifier` ":" `BaseClassList` ";"
+ Defm: "defm" `TokIdentifier` ":" `BaseClassListNE` ";"
Note that in the :token:`BaseClassList`, all of the ``multiclass``'s must
precede any ``class``'s that appear.