Commit 4664f4c4 by Jason Thorpe Committed by Jason Thorpe

* config/sh/lib1funcs.asm (GLOBAL): Use __USER_LABEL_PREFIX__.

From-SVN: r53570
parent 93febe68
2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
* config/sh/lib1funcs.asm (GLOBAL): Use __USER_LABEL_PREFIX__.
2002-05-17 Marek Michalkiewicz <marekm@amelek.gda.pl>
* config/avr/avr.c (avr_regs_to_save): New function. Also check
......
......@@ -43,13 +43,9 @@ Boston, MA 02111-1307, USA. */
#define LOCAL(X) L_##X
#endif
#ifdef __linux__
#define GLOBAL(X) __##X
#endif
#ifndef GLOBAL
#define GLOBAL(X) ___##X
#endif
#define CONCAT(A,B) A##B
#define GLOBAL0(U,X) CONCAT(U,__##X)
#define GLOBAL(X) GLOBAL0(__USER_LABEL_PREFIX__,X)
#if defined __SH5__ && ! defined __SH4_NOFPU__
#define FMOVD_WORKS
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment