Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
c36633c47ac478465e133cfa9155cccc3c84b8ab
/
.
/
llvm
/
test
/
TableGen
/
strconcat.td
blob: 0173c49365cce29f3def4981352bbf4cb2064374 [
file
] [
log
] [
blame
]
// RUN: llvm-tblgen %s | grep fufoo
class
Y
<
string
S
>
{
string
T
=
!
strconcat
(
S
,
"foo"
);
// String values concatenate lexically, as in C.
string
S
=
"foo"
"bar"
;
}
def
Z
:
Y
<
"fu"
>;