(ASM_GLOBALIZE_LABEL): Don't globalize function labels here.

From-SVN: r6400
This commit is contained in:
Torbjorn Granlund 1994-01-20 00:34:47 +00:00
parent ced21a3242
commit 9153589571

View File

@ -1712,11 +1712,16 @@ readonly_data () \
} while (0) } while (0)
#define ASM_GLOBALIZE_LABEL(FILE, NAME) \ #define ASM_GLOBALIZE_LABEL(FILE, NAME) \
do { fputs ("\t.EXPORT ", FILE); assemble_name (FILE, NAME); \ do { \
if (FUNCTION_NAME_P (NAME)) \ /* We only handle DATA objects here, functions are globalized in \
fputs (",CODE\n", FILE); \ ASM_DECLARE_FUNCTION_NAME. */ \
else \ if (! FUNCTION_NAME_P (NAME)) \
fputs (",DATA\n", FILE);} while (0) { \
fputs ("\t.EXPORT ", FILE); \
assemble_name (FILE, NAME); \
fputs (",DATA\n", FILE); \
} \
} while (0)
/* This is how to output a reference to a user-level label named NAME. /* This is how to output a reference to a user-level label named NAME.
`assemble_name' uses this. */ `assemble_name' uses this. */