Commit 64359a8a by Richard Stallman

*** empty log message ***

From-SVN: r1176
parent e241407e
...@@ -178,3 +178,19 @@ tdesc_section () \ ...@@ -178,3 +178,19 @@ tdesc_section () \
in_section = in_tdesc; \ 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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment