Add correct encodings for NEON vabal.
[oota-llvm.git] / test / TableGen / SuperSubclassSameName.td
index ded84de6954524cf1714c5dae249f40486314ce1..304c883417fac06fe3f8d1d634489ff3dbb452e8 100644 (file)
@@ -1,10 +1,11 @@
 // RUN: tblgen < %s
+// XFAIL: vg_leak
 // Test for template arguments that have the same name as superclass template
 // arguments.
 
 
 class Arg { int a; }
-class TheArg : Arg { let a = 1; }
+def TheArg : Arg { let a = 1; }
 
 
 class Super<Arg F> {