aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2007-11-14 07:42:50 +0000
committerDuncan Sands <baldrick@free.fr>2007-11-14 07:42:50 +0000
commitf9572a4c2bcdec54ea70c7b14f4ac6b38cfdd70c (patch)
tree597832f5ce52e452992c6f0c99ca8021e49ec37e
parentc2bb123823e3fac43d5fe2e62272a69f017a9d48 (diff)
XFAIL these tests until the fix gets backported
from llvm-gcc-4.2 to 4.0. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44103 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, 2 insertions, 0 deletions
diff --git a/test/CFrontend/2007-11-07-CopyAggregateAlign.c b/test/CFrontend/2007-11-07-CopyAggregateAlign.c
index 8bd94b00a7..5895656c06 100644
--- a/test/CFrontend/2007-11-07-CopyAggregateAlign.c
+++ b/test/CFrontend/2007-11-07-CopyAggregateAlign.c
@@ -1,3 +1,4 @@
// 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 424120d6c2..e69fd5c3f5 100644
--- a/test/CFrontend/2007-11-07-ZeroAggregateAlign.c
+++ b/test/CFrontend/2007-11-07-ZeroAggregateAlign.c
@@ -1,3 +1,4 @@
// RUN: %llvmgcc -S %s -o - | grep "align 2"
+// XFAIL: *
struct A { short s; short t; int i; };
void q() { struct A a = {0}; }