[WebAssembly] Fix handling of COPY instructions in WebAssemblyRegStackify.
[oota-llvm.git] / test / TableGen / SuperSubclassSameName.td
index ded84de6954524cf1714c5dae249f40486314ce1..643b380ca0055341d686f56ce5b768d50eaf0c91 100644 (file)
@@ -1,10 +1,11 @@
-// RUN: tblgen < %s
+// RUN: llvm-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> {