On Tue, 24 Jan 2017, David Malcolm wrote: > /* { dg-do run { x86_64-*-* } } */
That's never correct, since x86_64-*-* can have -m32 multilibs and i?86-*-* can have 64-bit multilibs. You always need to cover all relevant triplets and then restrict with effective-target selectors to relevant ABIs. > +/* { dg-do compile { target aarch64-*-* } } */ Should be aarch64*-*-* to cover aarch64_be triplets (and then again restrict by ABI as necessary; any triplet might have both endiannesses as multilibs, and both LP64 and ILP32). -- Joseph S. Myers jos...@codesourcery.com