aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2007-11-14 13:40:53 +0000
committerDuncan Sands <baldrick@free.fr>2007-11-14 13:40:53 +0000
commit7e9ab25a859678faed8c26551e88f05c4e46af48 (patch)
treefeaf6bbd7ab53ebf30fc9176665e8b4151b11162
parente925df7f0267afd0334adbcfd97531698104aa22 (diff)
Un XFAIL these tests, now that Bill has backported
the fix from 4.2. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44115 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CFrontend/2007-11-07-CopyAggregateAlign.c1
-rw-r--r--test/CFrontend/2007-11-07-ZeroAggregateAlign.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/test/CFrontend/2007-11-07-CopyAggregateAlign.c b/test/CFrontend/2007-11-07-CopyAggregateAlign.c
index 5895656c06..8bd94b00a7 100644
--- a/test/CFrontend/2007-11-07-CopyAggregateAlign.c
+++ b/test/CFrontend/2007-11-07-CopyAggregateAlign.c
@@ -1,4 +1,3 @@
// RUN: %llvmgcc -S %s -o - | grep "align 2" | count 6
-// XFAIL: *
struct A { char s, t, u, v; short a; };
void q() { struct A a, b; a = b; }
diff --git a/test/CFrontend/2007-11-07-ZeroAggregateAlign.c b/test/CFrontend/2007-11-07-ZeroAggregateAlign.c
index e69fd5c3f5..424120d6c2 100644
--- a/test/CFrontend/2007-11-07-ZeroAggregateAlign.c
+++ b/test/CFrontend/2007-11-07-ZeroAggregateAlign.c
@@ -1,4 +1,3 @@
// RUN: %llvmgcc -S %s -o - | grep "align 2"
-// XFAIL: *
struct A { short s; short t; int i; };
void q() { struct A a = {0}; }