aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-06-06 21:38:49 +0000
committerRichard Stallman <rms@gnu.org>1992-06-06 21:38:49 +0000
commit64359a8ae8257691687f486928b0cfe73066a4c1 (patch)
tree4fd7c3bb251b7b9e94bcafd5ea9ade71db49f0a0 /gcc
parente241407e6a487d1f55cfc76d7e729c6b6334226d (diff)
downloadgcc-64359a8ae8257691687f486928b0cfe73066a4c1.zip
gcc-64359a8ae8257691687f486928b0cfe73066a4c1.tar.gz
gcc-64359a8ae8257691687f486928b0cfe73066a4c1.tar.bz2
*** empty log message ***
From-SVN: r1176
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/i860/sysv4.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc/config/i860/sysv4.h b/gcc/config/i860/sysv4.h
index a34ce70..1eb56e2 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