Sign in
ara-mdk
/
platform
/
external
/
llvm
/
dad145562fe15d0d2195f8e94baa1a74bf34e6e1
/
.
/
test
/
TableGen
/
MultiClassDefName.td
blob: 75d6af5b42b966f1f374cf00091e403c49a61f16 [
file
] [
log
] [
blame
]
// 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"
>;