aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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}; }