From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10975 invoked by alias); 17 Mar 2002 16:52:10 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 10868 invoked from network); 17 Mar 2002 16:52:09 -0000 Received: from unknown (HELO louie.sfbay.redhat.com) (192.80.44.215) by sources.redhat.com with SMTP; 17 Mar 2002 16:52:09 -0000 Received: (from green@localhost) by louie.sfbay.redhat.com (8.11.6/8.11.6) id g2HGo8714138; Sun, 17 Mar 2002 08:50:08 -0800 Date: Sun, 17 Mar 2002 08:52:00 -0000 Message-Id: <200203171650.g2HGo8714138@louie.sfbay.redhat.com> X-Authentication-Warning: louie.sfbay.redhat.com: green set sender to green@redhat.com using -f From: Anthony Green To: gdb-patches@sources.redhat.com, nickc@redhat.com Subject: ARM sim patch: increase default target memory X-Organization: Red Hat, Sunnyvale, California X-URL: http://www.cygnus.com/~green X-SW-Source: 2002-03/txt/msg00280.txt.bz2 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 * 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;