From: Richard Stallman Date: Sat, 6 Jun 1992 21:38:49 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=64359a8ae8257691687f486928b0cfe73066a4c1;p=gcc.git *** empty log message *** From-SVN: r1176 --- diff --git a/gcc/config/i860/sysv4.h b/gcc/config/i860/sysv4.h index a34ce709464..1eb56e27a51 100644 --- a/gcc/config/i860/sysv4.h +++ b/gcc/config/i860/sysv4.h @@ -178,3 +178,19 @@ tdesc_section () \ in_section = in_tdesc; \ } \ } + +#ifdef OUTPUT_TDESC +#undef ASM_FILE_END +#define ASM_FILE_END(FILE) \ +do { \ + if (current_function_original_name != NULL) { \ + tdesc_section(); \ + fprintf ((FILE), "%s __ETEXT\n", ASM_LONG); \ + fprintf ((FILE), "%s 0\n", ASM_LONG); \ + text_section(); \ + fputs("__ETEXT:\n", (FILE)); \ + } \ + fprintf ((FILE), "\t.ident\t\"GCC: (GNU) %s\"\n", \ + version_string); \ + } while (0) +#endif