s/tblgen/llvm-tblgen/g in a few missed places, including the tests
[oota-llvm.git] / test / TableGen / strconcat.td
1 // RUN: llvm-tblgen %s | grep fufoo
2 // XFAIL: vg_leak
3
4 class Y<string S> {
5   string T = !strconcat(S, "foo");
6
7   // String values concatenate lexically, as in C.
8   string S = "foo" "bar";
9 }
10
11 def Z : Y<"fu">;