diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-12-25 01:23:21 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-12-27 00:31:33 -0500 |
commit | 556ca380d712270ba1f0adf780673b7d1a3fda95 (patch) | |
tree | 05e702f169bf9587388910b9b700c5d435306753 /sim/configure | |
parent | f754cabb05b715359c98ed0bce734f9fc64d5003 (diff) | |
download | gdb-556ca380d712270ba1f0adf780673b7d1a3fda95.zip gdb-556ca380d712270ba1f0adf780673b7d1a3fda95.tar.gz gdb-556ca380d712270ba1f0adf780673b7d1a3fda95.tar.bz2 |
sim: mips: drop unused micromips igen logic
This code appears to be unused since it was first merged. When
micromips was enabled, it was via the "MULTI" config, not the
"MICROMIPS" config, and the multi configs have sep vars. Since
nothing sets SIM_MIPS_GEN=MICROMIPS in the config, all of this
should be unreachable, so punt it to simplify. Further, the
SIM_MIPS_MICROMIPS16_FLAGS & SIM_MIPS_MICROMIPS_FLAGS settings
rely on sim_mips_micromips{,16}_{filter,machine} variables that
are never set in the configure script.
Diffstat (limited to 'sim/configure')
-rwxr-xr-x | sim/configure | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/sim/configure b/sim/configure index 34a8d59..5149c3d 100755 --- a/sim/configure +++ b/sim/configure @@ -646,8 +646,6 @@ SIM_MIPS_MULTI_SRC SIM_MIPS_MULTI_IGEN_CONFIGS SIM_MIPS_MULTI_FLAGS SIM_MIPS_GEN -SIM_MIPS_MICROMIPS16_FLAGS -SIM_MIPS_MICROMIPS_FLAGS SIM_MIPS_M16_FLAGS SIM_MIPS_IGEN_FLAGS SIM_MIPS_FPU_BITSIZE @@ -12446,7 +12444,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12449 "configure" +#line 12447 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12552,7 +12550,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12555 "configure" +#line 12553 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -16607,10 +16605,6 @@ else fi SIM_MIPS_IGEN_FLAGS="-F ${sim_mips_igen_filter} ${sim_mips_igen_machine}" SIM_MIPS_M16_FLAGS="-F ${sim_mips_m16_filter} ${sim_mips_m16_machine}" -SIM_MIPS_MICROMIPS16_FLAGS="-F ${sim_mips_micromips16_filter} ${sim_mips_micromips16_machine}" -SIM_MIPS_MICROMIPS_FLAGS="-F ${sim_mips_micromips_filter} ${sim_mips_micromips_machine}" - - |