diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-12-25 02:37:10 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-12-27 00:31:34 -0500 |
commit | 07f60ed83166c163794b2f5987b217e22e1ef6b2 (patch) | |
tree | 879cfff05a5a8c69d6f47cbb55815cf0d4b4a944 /sim/Makefile.in | |
parent | 49d3ce6c2e9c7b2d9f3c761a9e736bdaceb756e6 (diff) | |
download | gdb-07f60ed83166c163794b2f5987b217e22e1ef6b2.zip gdb-07f60ed83166c163794b2f5987b217e22e1ef6b2.tar.gz gdb-07f60ed83166c163794b2f5987b217e22e1ef6b2.tar.bz2 |
sim: mips: rename "igen" generation mode to "single"
The naming in here has grown organically and is confusing to follow.
Originally there was only one set of rules for generating code from
the igen sources, so calling it "tmp-igen" and such made sense. But
when other multigen modes were added ("m16" & "multi") which also
used igen, it's not clear what's common igen and what's specific to
this generation mode. So rename the set of rules from "igen" to
"single" so it's easier to follow.
Diffstat (limited to 'sim/Makefile.in')
-rw-r--r-- | sim/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/Makefile.in b/sim/Makefile.in index 667b319..a1884d6 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -1114,12 +1114,12 @@ SIM_INLINE = @SIM_INLINE@ SIM_MIPS_BITSIZE = @SIM_MIPS_BITSIZE@ SIM_MIPS_FPU_BITSIZE = @SIM_MIPS_FPU_BITSIZE@ SIM_MIPS_GEN = @SIM_MIPS_GEN@ -SIM_MIPS_IGEN_FLAGS = @SIM_MIPS_IGEN_FLAGS@ SIM_MIPS_IGEN_ITABLE_FLAGS = @SIM_MIPS_IGEN_ITABLE_FLAGS@ SIM_MIPS_M16_FLAGS = @SIM_MIPS_M16_FLAGS@ SIM_MIPS_MULTI_IGEN_CONFIGS = @SIM_MIPS_MULTI_IGEN_CONFIGS@ SIM_MIPS_MULTI_OBJ = @SIM_MIPS_MULTI_OBJ@ SIM_MIPS_MULTI_SRC = @SIM_MIPS_MULTI_SRC@ +SIM_MIPS_SINGLE_FLAGS = @SIM_MIPS_SINGLE_FLAGS@ SIM_MIPS_SUBTARGET = @SIM_MIPS_SUBTARGET@ SIM_PRIMARY_TARGET = @SIM_PRIMARY_TARGET@ SIM_RISCV_BITSIZE = @SIM_RISCV_BITSIZE@ |