/* Check that -mfoo is accepted if defined in a user spec and that it is not passed on the command line. *//* Must be processed in EXTRA_SPECS to run. *//* { dg-do run { target sh*-*-* } } *//* { dg-do compile } *//* { dg-options "-B${srcdir}/gcc.dg --specs=foo.specs -tfoo" } */externvoidabort(void);intmain(void){#ifdef FOOreturn0;#elseabort();#endif}