public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* gas/config/obj-ieee.c
@ 2006-05-09  2:11 Alan Modra
  2006-05-09  4:46 ` gas/config/obj-ieee.c Ben Elliston
  2006-06-01 12:20 ` gas/config/obj-ieee.c Alan Modra
  0 siblings, 2 replies; 3+ messages in thread
From: Alan Modra @ 2006-05-09  2:11 UTC (permalink / raw)
  To: binutils

gas/config/obj-ieee.c doesn't seem to be used by anything, and hasn't
been compiled for any gas target since at least binutils-2.5.1.  That
makes it ripe for removal, I think.  Any objections?

-- 
Alan Modra
IBM OzLabs - Linux Technology Centre

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: gas/config/obj-ieee.c
  2006-05-09  2:11 gas/config/obj-ieee.c Alan Modra
@ 2006-05-09  4:46 ` Ben Elliston
  2006-06-01 12:20 ` gas/config/obj-ieee.c Alan Modra
  1 sibling, 0 replies; 3+ messages in thread
From: Ben Elliston @ 2006-05-09  4:46 UTC (permalink / raw)
  To: binutils

> gas/config/obj-ieee.c doesn't seem to be used by anything, and
> hasn't been compiled for any gas target since at least
> binutils-2.5.1.  That makes it ripe for removal, I think.  Any
> objections?

Not from me :-)

Ben

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: gas/config/obj-ieee.c
  2006-05-09  2:11 gas/config/obj-ieee.c Alan Modra
  2006-05-09  4:46 ` gas/config/obj-ieee.c Ben Elliston
@ 2006-06-01 12:20 ` Alan Modra
  1 sibling, 0 replies; 3+ messages in thread
From: Alan Modra @ 2006-06-01 12:20 UTC (permalink / raw)
  To: binutils

On Tue, May 09, 2006 at 10:41:20AM +0930, Alan Modra wrote:
> gas/config/obj-ieee.c doesn't seem to be used by anything, and hasn't
> been compiled for any gas target since at least binutils-2.5.1.  That
> makes it ripe for removal, I think.  Any objections?

Well it seems nobody cares.

gas/
	* config/obj-ieee.c: Delete.
	* config/obj-ieee.h: Delete.
	* Makefile.am (OBJ_FORMATS): Remove ieee.
	(OBJ_FORMAT_CFILES, OBJ_FORMAT_HFILES): Similarly.
	(obj-ieee.o): Remove rule.
	* Makefile.in: Regenerate.
	* configure.in (atof): Remove tahoe.
	(OBJ_MAYBE_IEEE): Don't define.
	* configure: Regenerate.
	* config.in: Regenerate.
	* doc/Makefile.in: Regenerate.
	* po/POTFILES.in: Regenerate.

Index: gas/Makefile.am
===================================================================
RCS file: /cvs/src/src/gas/Makefile.am,v
retrieving revision 1.133
diff -u -p -r1.133 Makefile.am
--- gas/Makefile.am	31 May 2006 15:14:35 -0000	1.133
+++ gas/Makefile.am	1 Jun 2006 12:07:09 -0000
@@ -99,8 +99,7 @@ OBJ_FORMATS = \
 	coff \
 	ecoff \
 	elf \
-	evax \
-	ieee
+	evax
 
 # This is an sh case which sets valid according to whether the CPU
 # type in the shell variable c and the OS type in the shell variable o
@@ -337,7 +336,6 @@ OBJ_FORMAT_CFILES = \
 	config/obj-ecoff.c \
 	config/obj-elf.c \
 	config/obj-evax.c \
-	config/obj-ieee.c \
 	config/obj-som.c
 
 OBJ_FORMAT_HFILES = \
@@ -346,7 +344,6 @@ OBJ_FORMAT_HFILES = \
 	config/obj-ecoff.h \
 	config/obj-elf.h \
 	config/obj-evax.h \
-	config/obj-ieee.h \
 	config/obj-som.h
 
 # Emulation header files in config
@@ -553,8 +550,6 @@ obj-elf.o : $(srcdir)/config/obj-elf.c
 	$(COMPILE) -c $(srcdir)/config/obj-elf.c
 obj-evax.o : $(srcdir)/config/obj-evax.c
 	$(COMPILE) -c $(srcdir)/config/obj-evax.c
-obj-ieee.o : $(srcdir)/config/obj-ieee.c
-	$(COMPILE) -c $(srcdir)/config/obj-ieee.c
 obj-multi.o : $(srcdir)/config/obj-multi.c
 	$(COMPILE) -c $(srcdir)/config/obj-multi.c
 obj-som.o : $(srcdir)/config/obj-som.c
Index: gas/configure.in
===================================================================
RCS file: /cvs/src/src/gas/configure.in,v
retrieving revision 1.190
diff -u -p -r1.190 configure.in
--- gas/configure.in	31 May 2006 15:14:36 -0000	1.190
+++ gas/configure.in	1 Jun 2006 12:07:17 -0000
@@ -424,8 +424,7 @@ fi
 # IEEE FP.  On those that don't support FP at all, usually IEEE
 # is emulated.
 case ${target_cpu} in
-  vax | tahoe )	atof=${target_cpu} ;;
-  pdp11)	atof=vax ;;
+  vax | pdp11 )	atof=vax ;;
   *)		atof=ieee ;;
 esac
 
@@ -511,7 +510,6 @@ if test `set . $formats ; shift ; echo $
       ecoff)	AC_DEFINE(OBJ_MAYBE_ECOFF, 1,   [ECOFF support?])   ;;
       elf)	AC_DEFINE(OBJ_MAYBE_ELF, 1,     [ELF support?])     ;;
       generic)	AC_DEFINE(OBJ_MAYBE_GENERIC, 1, [generic support?]) ;;
-      ieee)	AC_DEFINE(OBJ_MAYBE_IEEE, 1,    [IEEE support?])    ;;
       som)	AC_DEFINE(OBJ_MAYBE_SOM, 1,     [SOM support?])     ;;
     esac
     extra_objects="$extra_objects obj-$fmt.o"


-- 
Alan Modra
IBM OzLabs - Linux Technology Centre

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-06-01 12:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-09  2:11 gas/config/obj-ieee.c Alan Modra
2006-05-09  4:46 ` gas/config/obj-ieee.c Ben Elliston
2006-06-01 12:20 ` gas/config/obj-ieee.c Alan Modra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).