On Fri, Apr 08, 2011 at 03:33:49PM +0200, Michael Matz wrote: > --- testsuite/gcc.target/i386/pr48389.c (revision 0) > +++ testsuite/gcc.target/i386/pr48389.c (revision 0) > @@ -0,0 +1,12 @@ > +/* PR middle-end/48389 */ > +/* { dg-do compile } */ > +/* { dg-options "-O -m32 -mtune=pentiumpro -Wno-abi" } */
-m32/-m64 should never go into dg-options. Either do something like: /* { dg-options "-O" } */ /* { dg-options "-O -mtune=pentiumpro -Wno-abi" { target ilp32 } } */ or remove -m32 from dg-options and conditionalize dg-do compile on ilp32 target. Jakub