This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] remove symbol _fp_hw from s390


This patch removes symbol _fp_hw in start.S from s390.  This _fp_hw is
mingled with compiled binaries, but it does not affect anything.  I
believe _fp_hw is not needed on s390 because this symbol is used to
keep binary compatibility with SysV ABI on i386, not s390.

Regards,
-- gotom

2004-07-10  GOTO Masanori  <gotom@debian.or.jp>

	* sysdeps/s390/s390-32/elf/start.S: Remove symbol _fp_hw.
	* sysdeps/s390/s390-64/elf/start.S: Likewise.


Index: sysdeps/s390/s390-32/elf/start.S
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/s390/s390-32/elf/start.S,v
retrieving revision 1.6
diff -u -r1.6 start.S
--- sysdeps/s390/s390-32/elf/start.S	8 Jul 2003 03:45:26 -0000	1.6
+++ sysdeps/s390/s390-32/elf/start.S	11 Jul 2004 23:46:48 -0000
@@ -96,13 +96,6 @@
 .L5:    .long  _GLOBAL_OFFSET_TABLE_-.Llit
 #endif
 
-/* FIXME: FPU flags or what ?!? */
-
-	.section .rodata
-	.globl _fp_hw
-	.long 3
-	.size _fp_hw, 4
-
 /* Define a symbol for the first piece of initialized data.  */
 	.data
 	.globl __data_start
Index: sysdeps/s390/s390-64/elf/start.S
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/s390/s390-64/elf/start.S,v
retrieving revision 1.6
diff -u -r1.6 start.S
--- sysdeps/s390/s390-64/elf/start.S	8 Jul 2003 03:45:26 -0000	1.6
+++ sysdeps/s390/s390-64/elf/start.S	11 Jul 2004 23:46:48 -0000
@@ -73,13 +73,6 @@
 	/* Crash if __libc_start_main returns.	*/
 	.word	0
 
-	/* FIXME: FPU flags or what ?!?	 */
-
-	.section .rodata
-	.globl _fp_hw
-	.long 3
-	.size _fp_hw, 4
-
 	/* Define a symbol for the first piece of initialized data.  */
 	.data
 	.globl __data_start


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]