There are a couple more test that need adjusting: gcc.dg/fixed-point/operator-bitwise.c gcc.dg/fixed-point/composite-type.c
These tests fail on arm-none-eabi. Below is a patch that fixes them. Thanks, Greta gcc/testsuite 2012-05-02 Greta Yorsh <greta.yo...@arm.com> * gcc.dg/fixed-point/composite-type.c (dg-options): Add option -ftrack-macro-expansion=0. * gcc.dg/fixed-point/operator-bitwise.c (dg-options): Add option -ftrack-macro-expansion=0. diff --git a/gcc/testsuite/gcc.dg/fixed-point/composite-type.c b/gcc/testsuite/gcc.dg/fixed-point/composite-type.c index 5ae1198..026bdaf 100644 --- a/gcc/testsuite/gcc.dg/fixed-point/composite-type.c +++ b/gcc/testsuite/gcc.dg/fixed-point/composite-type.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-std=gnu99 -O -Wall -Wno-unused" } */ +/* { dg-options "-std=gnu99 -O -Wall -Wno-unused -ftrack-macro-expansion=0" } */ /* C99 6.2.7: Compatible type and composite type. */ diff --git a/gcc/testsuite/gcc.dg/fixed-point/operator-bitwise.c b/gcc/testsuite/gcc.dg/fixed-point/operator-bitwise.c index 31aecf5..6ba817d 100644 --- a/gcc/testsuite/gcc.dg/fixed-point/operator-bitwise.c +++ b/gcc/testsuite/gcc.dg/fixed-point/operator-bitwise.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-std=gnu99" } */ +/* { dg-options "-std=gnu99 -ftrack-macro-expansion=0" } */ /* C99 6.5.10: Bitwise AND operator. C99 6.5.11: Bitwise exclusive OR operator. > -----Original Message----- > From: Mike Stump [mailto:mikest...@comcast.net] > Sent: 30 April 2012 17:09 > To: Dodji Seketeli > Cc: Gabriel Dos Reis; GCC Patches; Tom Tromey; Jason Merrill; Paolo > Carlini; Benjamin De Kosnik > Subject: Re: [PATCH 12/13] Adjust relevant test cases wrt -ftrack- > macro-expansion=[0|2] > > On Apr 29, 2012, at 10:38 AM, Dodji Seketeli wrote: > > While bootstrapping the tree again, it appeared that an output > > regression of the objc test objc.dg/foreach-7.m flew below my radar. > > > This looks fairly obvious to me, but I am CC-ing Mike Stump, just in > > case. > > That's fine.