llvm/test/TableGen/*Foreach*.td: Remove XFAIL:vg_leak. They have not been failing since r215176.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215445 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2014-08-12 14:06:21 +00:00
parent 0dbff88f4e
commit 87d7e906ce
4 changed files with 0 additions and 4 deletions

View File

@ -1,5 +1,4 @@
// RUN: llvm-tblgen %s | FileCheck %s
// XFAIL: vg_leak
class Register<string name, int idx> {
string Name = name;

View File

@ -1,5 +1,4 @@
// RUN: llvm-tblgen %s | FileCheck %s
// XFAIL: vg_leak
class Register<string name, int idx> {
string Name = name;

View File

@ -1,5 +1,4 @@
// RUN: llvm-tblgen %s | FileCheck %s
// XFAIL: vg_leak
class Droid<string series, int release, string model, int patchlevel> {
string Series = series;

View File

@ -1,5 +1,4 @@
// RUN: llvm-tblgen %s | FileCheck %s
// XFAIL: vg_leak
class Set<int i = 0, int j = 0, int k = 0> {
int I = i;