Handle expressions of the form _GLOBAL_OFFSET_TABLE_-symbol the same way gas
[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">;