Commit 5aa11061 by DJ Delorie Committed by DJ Delorie

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

From-SVN: r202016
parent 33fbbb76
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
......
......@@ -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) \
......
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