On Fri, Jan 16, 2015 at 5:38 AM, Rainer Orth <r...@cebitec.uni-bielefeld.de> wrote: > Jakub Jelinek <ja...@redhat.com> writes: > >>> @@ -311,7 +312,8 @@ proc run-many-tests { testcases extra_fl >>> >>> set targetabis { "" } >>> if [string match $compiler_vendor "gnu"] { >>> - if [istarget "i?86-*-*"] { >>> + if { ([istarget "i?86-*-*"] || [istarget "x86_64-*-*"]) >>> + && [is-effective-target ilp32] } { >> >> Shouldn't that be ia32 instead if ilp32 ? I mean, do you want >> it for -mx32 too or not? > > I've no idea if x32 supports stdcall or not. >
No, x32 doesn't. You should check ia32, not ilp32. -- H.J.