Support x86 "eiz" and "riz" pseudo index registers in the assembler.
[oota-llvm.git] / test / TableGen / strconcat.td
1 // RUN: 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">;