summaryrefslogtreecommitdiff
path: root/docs/TableGenFundamentals.rst
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2014-02-09 02:54:26 +0000
committerSean Silva <silvas@purdue.edu>2014-02-09 02:54:26 +0000
commit81756b98aa33bccf699ef456aec5887980059451 (patch)
treed8defb83fb96165c4e9929935867fada0de19f8a /docs/TableGenFundamentals.rst
parent7048c05a037d2e576e84d82bea5a57c716f85d13 (diff)
downloadllvm-81756b98aa33bccf699ef456aec5887980059451.tar.gz
llvm-81756b98aa33bccf699ef456aec5887980059451.tar.bz2
llvm-81756b98aa33bccf699ef456aec5887980059451.tar.xz
[docs] [tblgen] clarify that code fragments are just string literals
Fun fact: looking at the TableGen code (around TGParser.cpp:1166), the only difference in handling is that adjacent regular string literals are concatenated in the parser. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201035 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/TableGenFundamentals.rst')
-rw-r--r--docs/TableGenFundamentals.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/TableGenFundamentals.rst b/docs/TableGenFundamentals.rst
index 5d529c396a..8f3d07c392 100644
--- a/docs/TableGenFundamentals.rst
+++ b/docs/TableGenFundamentals.rst
@@ -289,7 +289,7 @@ supported include:
string value
``[{ ... }]``
- code fragment
+ usually called a "code fragment", but is just a multiline string literal
``[ X, Y, Z ]<type>``
list value. <type> is the type of the list element and is usually optional.