summaryrefslogtreecommitdiff
path: root/include/libc-symbols.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-09-21 01:46:11 +0000
committerMike Frysinger <vapier@gentoo.org>2006-09-21 01:46:11 +0000
commit3fb7e923b95687504e91ebde1fdbd2d75e5985ec (patch)
tree838b2c2873cde7e82a8148851d44dbb3f234334a /include/libc-symbols.h
parent3f13b12507b91750a350e57370d334dcd5ac1794 (diff)
use proper #APP lines so that the assembler knows when it needs to handle parsing (see http://sources.redhat.com/ml/binutils/2004-04/msg00665.html)
Diffstat (limited to 'include/libc-symbols.h')
-rw-r--r--include/libc-symbols.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/include/libc-symbols.h b/include/libc-symbols.h
index c5d574d90..ae5ff518e 100644
--- a/include/libc-symbols.h
+++ b/include/libc-symbols.h
@@ -281,25 +281,21 @@
#define __make_section_unallocated(section_string) \
__asm__ (".section " section_string "\n\t.previous");
-/* Tacking on "\n\t#" to the section name makes gcc put it's bogus
+/* Tacking on "\n#APP\n\t#" to the section name makes gcc put it's bogus
section attributes on what looks like a comment to the assembler. */
#ifdef __sparc__ //HAVE_SECTION_QUOTES
-# define __sec_comment "\"\n\t#\""
+# define __sec_comment "\"\n#APP\n\t#\""
#else
-# define __sec_comment "\n\t#"
+# define __sec_comment "\n#APP\n\t#"
#endif
/* When a reference to SYMBOL is encountered, the linker will emit a
warning message MSG. */
-#if defined(__cris__) || defined(__vax__)
-# define link_warning(symbol, msg)
-#else
-# define link_warning(symbol, msg) \
+#define link_warning(symbol, msg) \
__make_section_unallocated (".gnu.warning." #symbol) \
static const char __evoke_link_warning_##symbol[] \
__attribute__ ((used, section (".gnu.warning." #symbol __sec_comment))) \
= msg;
-#endif
/* Handling on non-exported internal names. We have to do this only
for shared code. */