diff options
Diffstat (limited to 'llvm/docs/TableGen')
-rw-r--r-- | llvm/docs/TableGen/LangIntro.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/TableGen/LangIntro.rst b/llvm/docs/TableGen/LangIntro.rst index 534597b041b..69e5c1426e4 100644 --- a/llvm/docs/TableGen/LangIntro.rst +++ b/llvm/docs/TableGen/LangIntro.rst @@ -192,9 +192,9 @@ supported include: for 'a' in 'c.' This operation is analogous to $(subst) in GNU make. ``!foreach(a, b, c)`` - For each member of dag or list 'b' apply operator 'c.' 'a' is a dummy - variable that should be declared as a member variable of an instantiated - class. This operation is analogous to $(foreach) in GNU make. + For each member of dag or list 'b' apply operator 'c'. 'a' is the name + of a variable that will be substituted by members of 'b' in 'c'. + This operation is analogous to $(foreach) in GNU make. ``!head(a)`` The first element of list 'a.' |