projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
s/tblgen/llvm-tblgen/g in a few missed places, including the tests
[oota-llvm.git]
/
test
/
TableGen
/
MultiClassDefName.td
1
// RUN: llvm-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">;