On Sat, Mar 05, 2011 at 12:47:18AM +0100, Richard Guenther wrote: > On Sat, Mar 5, 2011 at 12:10 AM, Jakub Jelinek <ja...@redhat.com> wrote: > > This testcase fails on i686-linux, because of: > > gcc.dg/torture/pr47968.c:6:7: note: The ABI for passing parameters with > > 16-byte alignment has changed in GCC 4.6 > > gcc.dg/torture/pr47968.c:6:7: warning: SSE vector argument without SSE > > enabled changes the ABI [enabled by default] > > > > This patch fixes it by disabling warnings. Ok? > > We accept all -Wno- flags on all targets, right? (why does -w not suffice?)
-w disables warnings, -Wpsabi stuff is inform(). Some other tests also use -w -Wno-psabi (and, -Wpsabi is in c-family/c.opt, so available everywhere). Jakub