[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / code.td
blobd709b18855bc349ab31d8d8e35a0240756d742b6
1 // RUN: llvm-tblgen %s | FileCheck %s
2 // RUN: not llvm-tblgen -DERROR1 %s 2>&1 | FileCheck --check-prefix=ERROR1 %s
3 // XFAIL: vg_leak
5 // CHECK: def A1
6 // CHECK:   code CodeCode = [{code here;}]
7 // CHECK:   code StringCode = [{code here;}]
9 // CHECK: def A2
10 // CHECK:   string CodeCode = "string here"
11 // CHECK:   string StringCode = "string here"
13 // CHECK: def B1
14 // CHECK:   string CodeCode = "with paste 7"
15 // CHECK:   string StringCode = "with paste 7"
17 // CHECK: def C1
18 // CHECK:   code CodeCode = [{with concat 42}]
19 // CHECK:   code StringCode = [{with concat 42}]
21 // CHECK: def D1
22 // CHECK:   code CodeCode = [{with concat 108!}]
23 // CHECK:   code StringCode = [{with concat 108!}]
25 class A<code c> {
26   code CodeCode = c;
27   string StringCode = c;
30 def A1 : A<[{code here;}]>;
31 def A2 : A<"string here">;
33 class B<int i> : A<"with paste " # i>;
34 class C<int i> : A<!strconcat([{with concat }], !cast<string>(i))>;
35 class D<int i> : A<!strconcat([{with concat }], !cast<string>(i), "!")>;
37 def B1 : B<7>;
38 def C1 : C<42>;
39 def D1 : D<108>;
41 #ifdef ERROR1
43 // ERROR1: the 'code' type is not allowed
45 def Zerror1 {
46   code Code = !cast<code>("i = 0;");
49 #endif