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