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/common/Make-common.in | |
parent | 13adda68c54abf2654d01fa6523c379a13e418da (diff) | |
download | fsf-binutils-gdb-9bbf6f91c6e85ca916ec2c266009167f20f5ecfd.zip fsf-binutils-gdb-9bbf6f91c6e85ca916ec2c266009167f20f5ecfd.tar.gz fsf-binutils-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/common/Make-common.in')
-rw-r--r-- | sim/common/Make-common.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 36497e7..6fdf10f 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -75,7 +75,6 @@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ CXXFLAGS = @CXXFLAGS@ LDFLAGS = @LDFLAGS@ -SIM_BSWAP = @sim_bswap@ SIM_CFLAGS = @sim_cflags@ SIM_DEBUG = @sim_debug@ SIM_TRACE = @sim_trace@ @@ -234,7 +233,6 @@ CONFIG_CFLAGS = \ $(SIM_DEFAULT_MODEL) \ $(SIM_TRACE) \ $(SIM_PROFILE) \ - $(SIM_BSWAP) \ $(SIM_ASSERT) \ $(SIM_ALIGNMENT) \ $(SIM_BITSIZE) \ |