This is the mail archive of the
gdb-patches@sources.redhat.com
mailing list for the GDB project.
ARM sim patch: increase default target memory
- From: Anthony Green <green at redhat dot com>
- To: gdb-patches at sources dot redhat dot com, nickc at redhat dot com
- Date: Sun, 17 Mar 2002 08:50:08 -0800
- Subject: ARM sim patch: increase default target memory
This patch increases the default target memory for the ARM sim from 2
to 8MB. 2MB isn't quite enough for the gcj testsuite. 8MB appears
to be more than enough. We can get through the xscale-elf-gcj testsuite
quite easily with this change.
Ok?
2002-03-17 Anthony Green <green@redhat.com>
* wrapper.c (mem_size): Increase the default target memory to 8MB.
Index: sim/arm/wrapper.c
===================================================================
RCS file: /cvs/src/src/sim/arm/wrapper.c,v
retrieving revision 1.17
diff -u -p -r1.17 wrapper.c
--- wrapper.c 2002/02/05 11:22:26 1.17
+++ wrapper.c 2002/03/17 16:40:34
@@ -47,7 +47,7 @@ static SIM_OPEN_KIND sim_kind;
static char *myname;
/* Memory size in bytes. */
-static int mem_size = (1 << 21);
+static int mem_size = (1 << 23);
/* Non-zero to display start up banner, and maybe other things. */
static int verbosity;