Remove the 'N' modifier from llvm-ar.
[oota-llvm.git] / test / TableGen / MultiClass.td
index 37eb2f52bcdbc063f2d45f4e46567263a394d230..ef320cf79f1643780550bd924d55a3fe0763a9a6 100644 (file)
@@ -1,7 +1,9 @@
-// RUN: tblgen %s
+// RUN: llvm-tblgen %s | grep "zing = 4" | count 2
+
 class C1<int A, string B> { 
   int bar = A;
   string thestr = B;
+  int zing;
 }
 
 def T : C1<4, "blah">;
@@ -17,3 +19,7 @@ multiclass t<int a> {
 defm FOO : t<42>;
 
 def T4 : C1<6, "foo">;
+
+let zing = 4 in
+  defm BAZ : t<3>;
+