Sign in
swiftshader
/
SwiftShader.git
/
66b8ab22586debccb1f787d4d52b7f042d4ddeb8
/
.
/
src
/
LLVM
/
test
/
TableGen
/
strconcat.td
blob: cec0e49d741df52c4ded109a043499b37721ad0a [
file
]
// RUN: llvm-tblgen %s | grep fufoo
// XFAIL: vg_leak
class
Y
<
string
S
>
{
string
T
=
!
strconcat
(
S
,
"foo"
);
// String values concatenate lexically, as in C.
string
S
=
"foo"
"bar"
;
}
def
Z
:
Y
<
"fu"
>;