* config/msp430/msp430.c (msp430_start_function): Add function type.

From-SVN: r233157
This commit is contained in:
DJ Delorie 2016-02-04 17:54:30 -05:00 committed by DJ Delorie
parent d5bc1c65ef
commit d094128b5b
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2016-02-04 DJ Delorie <dj@redhat.com>
* config/msp430/msp430.c (msp430_start_function): Add function type.
2016-02-04 Jakub Jelinek <jakub@redhat.com>
PR fortran/69368

View File

@ -2111,6 +2111,7 @@ msp430_start_function (FILE *file, const char *name, tree decl)
}
switch_to_section (function_section (decl));
ASM_OUTPUT_TYPE_DIRECTIVE(file, name, "function");
ASM_OUTPUT_FUNCTION_LABEL (file, name, decl);
}