about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-06-12 23:07:15 +0000
committerUlrich Drepper <drepper@redhat.com>2000-06-12 23:07:15 +0000
commit37fb8add3054abd484455aeedee487622c6f170e (patch)
tree9c469cd6af086e6df0dc25e2b63f4c81862bb79b
parent2caacb0adce76d3b2a29faf4905120fbe30b84bf (diff)
downloadglibc-37fb8add3054abd484455aeedee487622c6f170e.tar.gz
glibc-37fb8add3054abd484455aeedee487622c6f170e.tar.xz
glibc-37fb8add3054abd484455aeedee487622c6f170e.zip
Update.
2000-06-12  Ulrich Drepper  <drepper@redhat.com>

	* include/libc-symbols.h (link_warning): Work around a change in
	GAS which wrns about changing section attributes.
	Proposed by Nich Clifton <nickc@redhat.com>.
-rw-r--r--ChangeLog6
-rw-r--r--NEWS3
-rw-r--r--include/libc-symbols.h2
3 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index beb185c7db..9ebc7111af 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2000-06-12  Ulrich Drepper  <drepper@redhat.com>
+
+	* include/libc-symbols.h (link_warning): Work around a change in
+	GAS which wrns about changing section attributes.
+	Proposed by Nich Clifton <nickc@redhat.com>.
+
 2000-06-12  H.J. Lu  <hjl@gnu.org>
 
 	* sysdeps/i386/fpu/bits/mathinline.h (__sgn1l): Add __extension__.
diff --git a/NEWS b/NEWS
index 79440c6a29..b90e7dbdda 100644
--- a/NEWS
+++ b/NEWS
@@ -44,6 +44,9 @@ Version 2.2
 
 * The port to MIPS-Linux has been finished by Andreas Jaeger.
 
+* A port to Hitachi SH3 and SH4 has been contributed by Kazumoto Kojima
+  and Yutaka Niibe.
+
 
 Version 2.1.3
 
diff --git a/include/libc-symbols.h b/include/libc-symbols.h
index f0c7284d73..7e7a1e5535 100644
--- a/include/libc-symbols.h
+++ b/include/libc-symbols.h
@@ -179,7 +179,7 @@
 #  define link_warning(symbol, msg)			\
   __make_section_unallocated (".gnu.warning." #symbol)	\
   static const char __evoke_link_warning_##symbol[]	\
-    __attribute__ ((section (".gnu.warning." #symbol))) = msg;
+    __attribute__ ((section (".gnu.warning." #symbol "\n\t#"))) = msg;
 # else
 #  define link_warning(symbol, msg)		\
   asm(".stabs \"" msg "\",30,0,0,0\n"	\