https://gcc.gnu.org/bugzilla/show_bug.cgi?id=122835
--- Comment #18 from Uroš Bizjak <ubizjak at gmail dot com> --- (In reply to Jakub Jelinek from comment #17) > +#if defined(__x86_64__) || defined(__i386__) > +#define JMP "jmp" > +#elif defined(__aarch64__) || defined(__arm__) || defined(__powerpc__) > +#define JMP "b" > +#elif defined(__s390__) > +#define JMP "j" > +#endif Maybe put the above code in gcc.dg/jmp.h, we already have gcc.dg/nop.h.
