*** empty log message ***
authorRichard Stallman <rms@gnu.org>
Sat, 6 Jun 1992 21:38:49 +0000 (21:38 +0000)
committerRichard Stallman <rms@gnu.org>
Sat, 6 Jun 1992 21:38:49 +0000 (21:38 +0000)
From-SVN: r1176

gcc/config/i860/sysv4.h

index a34ce709464bb06c11f02d150a4db847ede81200..1eb56e27a51116b86be88b5d06b91667379985c3 100644 (file)
@@ -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