* config/i386/djgpp.h (ASM_DECLARE_FUNCTION_NAME): New.

From-SVN: r202016
This commit is contained in:
DJ Delorie 2013-08-27 00:22:05 -04:00 committed by DJ Delorie
parent 33fbbb766c
commit 5aa1106101
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-08-27 DJ Delorie <dj@redhat.com>
* config/i386/djgpp.h (ASM_DECLARE_FUNCTION_NAME): New.
2013-08-27 Yufeng Zhang <yufeng.zhang@arm.com>
* function.c (assign_parm_find_data_types): Set passed_mode and

View File

@ -117,6 +117,17 @@ along with GCC; see the file COPYING3. If not see
#define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
asm_output_aligned_bss ((FILE), (DECL), (NAME), (SIZE), (ALIGN))
/* Write the extra assembler code needed to declare a function properly. */
#ifndef ASM_DECLARE_FUNCTION_NAME
#define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL) \
do \
{ \
ASM_OUTPUT_FUNCTION_LABEL (FILE, NAME, DECL); \
} \
while (0)
#endif
/* This is how to tell assembler that a symbol is weak */
#undef ASM_WEAKEN_LABEL
#define ASM_WEAKEN_LABEL(FILE,NAME) \