From: Brian Demsky Date: Wed, 3 Oct 2012 10:03:02 +0000 (-0700) Subject: missing change X-Git-Tag: pldi2013~112 X-Git-Url: http://demsky.eecs.uci.edu/git/?p=model-checker.git;a=commitdiff_plain;h=6d8f169552ab07df876bd11725162ac602c5f4fe missing change --- diff --git a/common.mk b/common.mk index 009ae63..9fe9f09 100644 --- a/common.mk +++ b/common.mk @@ -8,7 +8,7 @@ UNAME = $(shell uname) LIB_NAME = model LIB_SO = lib$(LIB_NAME).so -CPPFLAGS += -Wall -g -O0 +CPPFLAGS += -Wall -g -O3 # Mac OSX options ifeq ($(UNAME), Darwin) diff --git a/mymemory.cc b/mymemory.cc index 6caf27a..6fd7c70 100644 --- a/mymemory.cc +++ b/mymemory.cc @@ -5,6 +5,7 @@ #include #include #include +#include "common.h" #define REQUESTS_BEFORE_ALLOC 1024 size_t allocatedReqs[ REQUESTS_BEFORE_ALLOC ] = { 0 }; int nextRequest = 0;