diff options
author | Sean Silva <silvas@purdue.edu> | 2013-02-01 03:50:20 +0000 |
---|---|---|
committer | Sean Silva <silvas@purdue.edu> | 2013-02-01 03:50:20 +0000 |
commit | 59e7bd5b5e862dc15f3e09cf52eab8c286fccb22 (patch) | |
tree | 4dbe6b55d447f5a1522e5e36075c78facde04c81 /llvm/docs/TableGen | |
parent | 6868ac4c9cdf057cc0cefd33eaf0c4f231a9ed73 (diff) | |
download | bcm5719-llvm-59e7bd5b5e862dc15f3e09cf52eab8c286fccb22.tar.gz bcm5719-llvm-59e7bd5b5e862dc15f3e09cf52eab8c286fccb22.zip |
[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.
llvm-svn: 174144
Diffstat (limited to 'llvm/docs/TableGen')
-rw-r--r-- | llvm/docs/TableGen/LangRef.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/TableGen/LangRef.rst b/llvm/docs/TableGen/LangRef.rst index 0be06814821..c9e1efba03f 100644 --- a/llvm/docs/TableGen/LangRef.rst +++ b/llvm/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. |