]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* config/msp430/msp430.c (msp430_start_function): Add function type.
authordj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 4 Feb 2016 22:54:30 +0000 (22:54 +0000)
committerdj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 4 Feb 2016 22:54:30 +0000 (22:54 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@233157 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/msp430/msp430.c

index edfdf559d4eaa5e953c698f974bed840e206c07f..17e4f49182bf48c8cf56bfffd5f277140c8a3260 100644 (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
index 182ca59a1c135902e7f2e13c35f2c3322bda5cfe..52be815f9d3ca02b43a51d9eba350e6908469ff6 100644 (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);
 }