repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
revert a hunk of r82018 that wasn't supposed to go in yet.
[llvm/avr.git]
/
test
/
TableGen
/
MultiClassDefName.td
blob
2e71f7d0616913b9e94ef0f25c595e6c78570e3c
1
// RUN: tblgen %s | grep WorldHelloCC | count 1
2
3
class C<string n> {
4
string name = n;
5
}
6
7
multiclass Names<string n, string m> {
8
def CC : C<n>;
9
def World#NAME#CC : C<m>;
10
}
11
12
defm Hello : Names<"hello", "world">;