diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-11-25 01:35:14 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-11-25 01:35:14 +0000 |
commit | f2181eff5f5cf2b12f7a67dc145d9439495d83cf (patch) | |
tree | 984b4967a30d1fad056ca8f64346f9ea27d652c9 /sim/ppc/configure.in | |
parent | 63caaafa5b281c0bdc0802622df333316a492816 (diff) | |
download | gdb-f2181eff5f5cf2b12f7a67dc145d9439495d83cf.zip gdb-f2181eff5f5cf2b12f7a67dc145d9439495d83cf.tar.gz gdb-f2181eff5f5cf2b12f7a67dc145d9439495d83cf.tar.bz2 |
Sort instruction names; Add igen -R option; count # of CRs that mtcrf moved
Diffstat (limited to 'sim/ppc/configure.in')
-rw-r--r-- | sim/ppc/configure.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sim/ppc/configure.in b/sim/ppc/configure.in index d59f9c2..b884544 100644 --- a/sim/ppc/configure.in +++ b/sim/ppc/configure.in @@ -110,9 +110,10 @@ AC_ARG_ENABLE(sim-icache, [ --enable-sim-icache=size Specify instruction cache size.], icache="" [case "${enableval}" in - yes) sim_icache="-r 1024"; icache="1024";; - no) sim_icache="";; - *) sim_icache="-r ${enableval}"; icache="${enableval}";; + yes) sim_icache="-r 1024"; icache="1024";; + define) sim_icache="-r 1024 -R"; icache="1024";; + no) sim_icache="";; + *) sim_icache="-r ${enableval}"; icache="${enableval}";; esac if test x"$silent" != x"yes" && test x"$icache" != x""; then echo "Setting instruction cache size to $icache" |