diff options
author | David Greene <greened@obbligato.org> | 2011-01-07 17:05:37 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2011-01-07 17:05:37 +0000 |
commit | 1434f66b2e132a707e2c8ccb3350ea13fb5aa051 (patch) | |
tree | 4802d84c0730654fc43566fdb31ce9ac1fbe528c /test/TableGen/ListManip.td | |
parent | 50dd09bd8592822214ff5fd66cffc3421b92d079 (diff) |
Rename lisp-like functions as suggested by Gabor Greif as loooong time
ago. This is both easier to learn and easier to read.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123001 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen/ListManip.td')
-rw-r--r-- | test/TableGen/ListManip.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/TableGen/ListManip.td b/test/TableGen/ListManip.td index 55fb5ea85a..6b1e491cd2 100644 --- a/test/TableGen/ListManip.td +++ b/test/TableGen/ListManip.td @@ -7,6 +7,6 @@ class Bli<string _t> } class Bla<list<Bli> _bli> -: Bli<!car(_bli).t> +: Bli<!head(_bli).t> { } |