Add a loop rerolling pass
[oota-llvm.git] / test / TableGen / strconcat.td
1 // RUN: llvm-tblgen %s | FileCheck %s
2
3 // CHECK: fufoo
4
5 class Y<string S> {
6   string T = !strconcat(S, "foo");
7
8   // String values concatenate lexically, as in C.
9   string S = "foo" "bar";
10 }
11
12 def Z : Y<"fu">;