summaryrefslogtreecommitdiff
path: root/test/TableGen/MultiClassDefName.td
blob: 75d6af5b42b966f1f374cf00091e403c49a61f16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: llvm-tblgen %s | grep WorldHelloCC | count 1

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">;