diff options
author | Mike Frysinger <vapier@gentoo.org> | 2024-01-01 11:04:08 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2024-01-01 14:52:16 -0500 |
commit | 22a09a1a33c718d519e0b08214d5accd3058b3d9 (patch) | |
tree | a49a5617dabb63beace0bb6caa21ed6af2f33ae3 | |
parent | f793be444cc72d818064b0c9b98ecd25f781a38d (diff) | |
download | fsf-binutils-gdb-22a09a1a33c718d519e0b08214d5accd3058b3d9.zip fsf-binutils-gdb-22a09a1a33c718d519e0b08214d5accd3058b3d9.tar.gz fsf-binutils-gdb-22a09a1a33c718d519e0b08214d5accd3058b3d9.tar.bz2 |
sim: ppc: drop unused host bitsize settings
This is never set anywhere, so it's always empty. Scrub it.
-rw-r--r-- | sim/ppc/Makefile.in | 2 | ||||
-rwxr-xr-x | sim/ppc/configure | 2 | ||||
-rw-r--r-- | sim/ppc/configure.ac | 1 |
3 files changed, 0 insertions, 5 deletions
diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index f76c662..48adacc 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -64,7 +64,6 @@ INLINE_CFLAGS = $(SIM_INLINE) SMP_CFLAGS = @sim_smp@ XOR_ENDIAN_CFLAGS = @sim_xor_endian@ BITSIZE_CFLAGS = @sim_bitsize@ -HOSTBITSIZE_CFLAGS = @sim_hostbitsize@ TIMEBASE_CFLAGS = @sim_timebase@ FLOAT_CFLAGS = @sim_float@ MONITOR_CFLAGS = @sim_monitor@ @@ -75,7 +74,6 @@ CONFIG_CFLAGS = \ $(SMP_CFLAGS) \ $(XOR_ENDIAN_CFLAGS) \ $(BITSIZE_CFLAGS) \ - $(HOSTBITSIZE_CFLAGS) \ $(TIMEBASE_CFLAGS) \ $(FLOAT_CFLAGS) \ $(MONITOR_CFLAGS) \ diff --git a/sim/ppc/configure b/sim/ppc/configure index 41dafff..04d0956 100755 --- a/sim/ppc/configure +++ b/sim/ppc/configure @@ -628,7 +628,6 @@ sim_model sim_monitor sim_float sim_timebase -sim_hostbitsize sim_bitsize sim_igen_smp sim_smp @@ -4202,7 +4201,6 @@ fi - ac_config_files="$ac_config_files Makefile" ac_config_commands="$ac_config_commands default" diff --git a/sim/ppc/configure.ac b/sim/ppc/configure.ac index 5260fa0..290cdd1 100644 --- a/sim/ppc/configure.ac +++ b/sim/ppc/configure.ac @@ -525,7 +525,6 @@ AC_SUBST(sim_xor_endian) AC_SUBST(sim_smp) AC_SUBST(sim_igen_smp) AC_SUBST(sim_bitsize) -AC_SUBST(sim_hostbitsize) AC_SUBST(sim_timebase) AC_SUBST(sim_float) AC_SUBST(sim_monitor) |