This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]