From: Duncan Sands Date: Wed, 14 Nov 2007 07:42:50 +0000 (+0000) Subject: XFAIL these tests until the fix gets backported X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f9572a4c2bcdec54ea70c7b14f4ac6b38cfdd70c;p=oota-llvm.git 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 --- diff --git a/test/CFrontend/2007-11-07-CopyAggregateAlign.c b/test/CFrontend/2007-11-07-CopyAggregateAlign.c index 8bd94b00a78..5895656c064 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 424120d6c21..e69fd5c3f54 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}; }