From: phil Date: Tue, 5 Jan 1999 19:26:33 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=1111951450a4d2054cd8e5d26b1f514ed999b1bb;p=cacao.git *** empty log message *** --- diff --git a/Makefile b/Makefile index a769fe0c2..211fa6f2d 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ # Authors: Reinhard Grafl EMAIL: cacao@complang.tuwien.ac.at # Andreas Krall EMAIL: cacao@complang.tuwien.ac.at # -# Last Change: $Id: Makefile 92 1998-11-25 11:48:50Z phil $ +# Last Change: $Id: Makefile 110 1999-01-05 19:26:33Z phil $ # # # ATTENTION: This version of the makefile only works with gmake. @@ -50,9 +50,9 @@ endif CC = cc ARCHFLAGS = -#CFLAGS = -g -ieee $(THREAD_CFLAGS) $(ARCHFLAGS) +CFLAGS = -g -ieee $(THREAD_CFLAGS) $(ARCHFLAGS) #CFLAGS = -O6 -g -pg -ieee $(THREAD_CFLAGS) $(ARCHFLAGS) -CFLAGS = -O2 -g -ieee -fno-inline $(THREAD_CFLAGS) $(ARCHFLAGS) +#CFLAGS = -O2 -g -ieee -fno-inline $(THREAD_CFLAGS) $(ARCHFLAGS) #CFLAGS = -O6 -ieee $(THREAD_CFLAGS) $(ARCHFLAGS) #CFLAGS = -O3 -ieee $(THREAD_CFLAGS) $(ARCHFLAGS) LFLAGS = -lm diff --git a/mm/lifespan.c b/mm/lifespan.c index a994330d4..c24637344 100644 --- a/mm/lifespan.c +++ b/mm/lifespan.c @@ -1,6 +1,6 @@ /* * cacao/mm/lifespan.c - * $Id: lifespan.c 106 1998-12-11 02:03:33Z phil $ + * $Id: lifespan.c 110 1999-01-05 19:26:33Z phil $ */ #include "mm.h" @@ -22,8 +22,8 @@ static lifespan_object** lifespan_objects_end = NULL; static void* lifespan_objects_off = NULL; static FILE* lifespan_file = NULL; -static unsigned long lifespan_histo_size[64] = {}; -static unsigned long lifespan_histo_lifespan[64] = {}; +static unsigned long lifespan_histo_size[64] = { 0 }; +static unsigned long lifespan_histo_lifespan[64] = { 0 }; void lifespan_init(void* heap_base, unsigned long heap_size) {