Don't mark scalar integer multiplication as Expand on x86, since x86
[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
7 def Z : Y<"fu">;