msp430.h (ASM_SPEC): Pass -md on to the assembler.
* config/msp430/msp430.h (ASM_SPEC): Pass -md on to the assembler. (ASM_DECLARE_FUNCTION_NAME): Define. From-SVN: r202681
This commit is contained in:
parent
4d9192b50c
commit
d30d00a2f1
|
@ -1,3 +1,8 @@
|
|||
2013-09-18 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* config/msp430/msp430.h (ASM_SPEC): Pass -md on to the assembler.
|
||||
(ASM_DECLARE_FUNCTION_NAME): Define.
|
||||
|
||||
2013-09-17 Trevor Saunders <tsaunders@mozilla.com>
|
||||
|
||||
* compare-elim.c (find_comparison_dom_walker): New class
|
||||
|
|
|
@ -54,6 +54,7 @@ extern bool msp430x;
|
|||
"%{mmcu=msp430x:-mmcu=msp430X;mmcu=*:-mmcu=%*} " /* Pass the MCU type on to the assembler. */ \
|
||||
"%{mrelax=-mQ} " /* Pass the relax option on to the assembler. */ \
|
||||
"%{mlarge:-ml} " /* Tell the assembler if we are building for the LARGE pointer model. */ \
|
||||
"%{!msim:-md} %{msim:%{mlarge:-md}}" /* Copy data from ROM to RAM if necessary. */ \
|
||||
"%{ffunction-sections:-gdwarf-sections}" /* If function sections are being created then create DWARF line number sections as well. */
|
||||
|
||||
/* Enable linker section garbage collection by default, unless we
|
||||
|
@ -399,3 +400,7 @@ typedef struct
|
|||
)
|
||||
|
||||
#define ACCUMULATE_OUTGOING_ARGS 1
|
||||
|
||||
#undef ASM_DECLARE_FUNCTION_NAME
|
||||
#define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL) \
|
||||
msp430_start_function ((FILE), (NAME), (DECL))
|
||||
|
|
Loading…
Reference in New Issue