[PM] Wire up the Verifier for the new pass manager and connect it to the
[oota-llvm.git] / test / TableGen / strconcat.td
index cdf3928f04d659ec270789830896b84ab2e6c836..dfb1a94d82c8b25767f2f1d8770ad4fa51995966 100644 (file)
@@ -1,7 +1,12 @@
-// RUN: tblgen %s | grep fufoo
+// RUN: llvm-tblgen %s | FileCheck %s
+
+// CHECK: fufoo
 
 class Y<string S> {
   string T = !strconcat(S, "foo");
+
+  // String values concatenate lexically, as in C.
+  string S = "foo" "bar";
 }
 
 def Z : Y<"fu">;