revert a hunk of r82018 that wasn't supposed to go in yet.
[llvm/avr.git] / test / TableGen / lisp.td
blob3e392fda84ff3ba139e7c1eab8063655b964c838
1 // RUN: tblgen %s | grep {}
3 class List<list<string> n> {
4   list<string> names = n;
7 class CAR<string e> {
8   string element = e;
11 class CDR<list<string> r, int n> {
12   list<string> rest = r;
13   int null = n;
16 class NameList<list<string> Names> :
17   List<Names>, CAR<!car(Names)>, CDR<!cdr(Names), !null(!cdr(Names))>;
19 def Three : NameList<["Tom", "Dick", "Harry"]>;
21 def One : NameList<["Jeffrey Sinclair"]>;