summaryrefslogtreecommitdiff
path: root/test/TableGen/MultiClassDefName.td
blob: 69b951d378a19c2424471674e4fe1b067066fbb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// RUN: llvm-tblgen %s | FileCheck %s
// XFAIL: vg_leak

// CHECK: WorldHelloCC
// CHECK-NOT: WorldHelloCC

class C<string n> {
  string name = n;
}

multiclass Names<string n, string m> {
   def CC : C<n>;
   def World#NAME#CC : C<m>;
}

defm Hello : Names<"hello", "world">;

// Ensure that the same anonymous name is used as the prefix for all defs in an
// anonymous multiclass.

class Outer<C i> {
  C Inner = i;
}

multiclass MC<string name> {
  def hi : C<name>;
  def there : Outer<!cast<C>(!strconcat(NAME, "hi"))>;
}

defm : MC<"foo">;