diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-01-04 04:06:01 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-01-04 05:04:30 -0500 |
commit | 9bbf6f91c6e85ca916ec2c266009167f20f5ecfd (patch) | |
tree | 6819794d652596c2af44565c9a87e93c064c40fb /sim/ppc/Makefile.in | |
parent | 13adda68c54abf2654d01fa6523c379a13e418da (diff) | |
download | gdb-9bbf6f91c6e85ca916ec2c266009167f20f5ecfd.zip gdb-9bbf6f91c6e85ca916ec2c266009167f20f5ecfd.tar.gz gdb-9bbf6f91c6e85ca916ec2c266009167f20f5ecfd.tar.bz2 |
sim: punt x86-specific bswap logic
The compiler/C library should produce reasonable code for htonl/ntohl,
and at least glibc tries pretty hard to always produce good code for
them. This logic only had support for 32-bit x86 systems anymore, and
it's unlikely people were even opting into this, so drop it all.
Diffstat (limited to 'sim/ppc/Makefile.in')
-rw-r--r-- | sim/ppc/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 5f68909..6efa73f 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -72,7 +72,6 @@ RANLIB = @RANLIB@ SIM_CFLAGS = @sim_cflags@ INLINE_CFLAGS = @sim_inline@ -BSWAP_CFLAGS = @sim_bswap@ ENDIAN_CFLAGS = @sim_endian@ REGPARM_CFLAGS = @sim_regparm@ STDCALL_CFLAGS = @sim_stdcall@ @@ -94,7 +93,7 @@ STDIO_CFLAGS = @sim_stdio@ TERMIO_CFLAGS = @sim_termio@ WARNING_CFLAGS = @sim_warnings@ DEVZERO_CFLAGS = @sim_devzero@ -CONFIG_CFLAGS = $(BSWAP_CFLAGS) \ +CONFIG_CFLAGS = \ $(ENDIAN_CFLAGS) \ $(REGPARM_CFLAGS) \ $(STDCALL_CFLAGS) \ |