implement support for C-style string literal concatenation in td files.
[oota-llvm.git] / test / TableGen / strconcat.td
1 // RUN: tblgen %s | grep fufoo
2
3 class Y<string S> {
4   string T = !strconcat(S, "foo");
5
6   // String values concatenate lexically, as in C.
7   string S = "foo" "bar";
8 }
9
10 def Z : Y<"fu">;