]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/TableGen/MultiClassDefName.td
Update LLVM to r99115.
[FreeBSD/FreeBSD.git] / test / TableGen / MultiClassDefName.td
1 // RUN: tblgen %s | grep WorldHelloCC | count 1
2 // XFAIL: vg_leak
3
4 class C<string n> {
5   string name = n;
6 }
7
8 multiclass Names<string n, string m> {
9    def CC : C<n>;
10    def World#NAME#CC : C<m>;
11 }
12
13 defm Hello : Names<"hello", "world">;