aboutsummaryrefslogtreecommitdiffstats
path: root/test/TableGen/ListManip.td
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2010-09-03 21:00:49 +0000
committerDavid Greene <greened@obbligato.org>2010-09-03 21:00:49 +0000
commit9703843dfa5640ddfc4362d7aa20b03fba485ece (patch)
tree3c8f21c0b9e558fa2fbf3193b9db5063935d1f8a /test/TableGen/ListManip.td
parent190d0a54c18e0f8198b5b802818f7194b91262b4 (diff)
downloadexternal_llvm-9703843dfa5640ddfc4362d7aa20b03fba485ece.zip
external_llvm-9703843dfa5640ddfc4362d7aa20b03fba485ece.tar.gz
external_llvm-9703843dfa5640ddfc4362d7aa20b03fba485ece.tar.bz2
Generalize getFieldType to work on all TypedInits. Add a couple of testcases from
Amaury Pouly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113010 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen/ListManip.td')
-rw-r--r--test/TableGen/ListManip.td10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/TableGen/ListManip.td b/test/TableGen/ListManip.td
new file mode 100644
index 0000000..c221bb1
--- /dev/null
+++ b/test/TableGen/ListManip.td
@@ -0,0 +1,10 @@
+// RUN: tblgen %s
+class Bli<string _t>
+{
+ string t = _t;
+}
+
+class Bla<list<Bli> _bli>
+: Bli<!car(_bli).t>
+{
+}