@ -64,7 +64,7 @@
# endif
# endif
/ / Globalize a label defined in the same translation unit .
/ / Globalize a label defined in the same translation unit .
/ / See macro ASM_GLOBALIZE_LABEL in the gcc sources .
/ / See macro ASM_GLOBALIZE_LABEL in the gcc sources .
# if defined(__i386__) || defined(__m68k__) || defined(__mips__) || defined(__mips64__) || defined(__alpha__) || defined(__rs6000__) || defined(__x86_64__) || defined(__s390__)
# if defined(__i386__) || defined(__m68k__) || defined(__mips__) || defined(__mipsel__) || defined(__mips 64__) || defined(__alpha__) || defined(__rs6000__) || defined(__x86_64__) || defined(__s390__)
/ / Some m68k systems use " xdef " or " global " or " .global " . . .
/ / Some m68k systems use " xdef " or " global " or " .global " . . .
# define CL_GLOBALIZE_LABEL(label) __asm__("\t.globl " label);
# define CL_GLOBALIZE_LABEL(label) __asm__("\t.globl " label);
# endif
# endif
@ -126,7 +126,7 @@
# if defined(__m68k__)
# if defined(__m68k__)
# define CL_JUMP_TO(addr) ASM_VOLATILE("jmp %0@" : : "a" ((void*)(addr)))
# define CL_JUMP_TO(addr) ASM_VOLATILE("jmp %0@" : : "a" ((void*)(addr)))
# endif
# endif
# if defined(__mips__)
# if defined(__mips__) || defined(__mipsel__)
# define CL_JUMP_TO(addr) ASM_VOLATILE("%*j %0" : : "d" ((void*)(addr)))
# define CL_JUMP_TO(addr) ASM_VOLATILE("%*j %0" : : "d" ((void*)(addr)))
# endif
# endif
# if defined(__sparc__) || defined(__sparc64__)
# if defined(__sparc__) || defined(__sparc64__)