author | Landry Breuil <landry@openbsd.org> |
Fri, 17 Jun 2011 15:48:00 -0700 | |
changeset 71399 | 8c1ddbd412979e5616fcf3c30bfdd63929adf190 |
parent 71398 | 1f11cd362858310ea1fe1635f042744406480886 |
child 71400 | 41d5782eabf2bd500d6d8c61be8f03915959891b |
push id | 20538 |
push user | cleary@mozilla.com |
push date | Mon, 20 Jun 2011 23:59:42 +0000 |
treeherder | mozilla-central@a285146675dc [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | khuey |
bugs | 665040 |
milestone | 7.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/js/src/Makefile.in +++ b/js/src/Makefile.in @@ -623,17 +623,17 @@ ifeq ($(MOZ_DEBUG),1) #check:: check-ooms endif ## Prevent regressing in our deprecation of non-preferred memory management functions. # We use all the files in the distribution so that different configurations # don't give different results. We skip the contents of objdirs using |find| # (it can't be done with %-expansion, because the files we want to skip aren't # in the vpath). -ALL_FILES=$(shell find $(srcdir) \( -name "*.cpp" -o -name "*.h" \) -not -path "*/dist/*" -not -path "*/config/*") +ALL_FILES=$(shell find $(srcdir) \( -name "*.cpp" -o -name "*.h" \) ! -path "*/dist/*" ! -path "*/config/*") check-malloc-function-usage: $(filter-out %jsalloc.h %jscntxt.h %jsutil.h, $(ALL_FILES)) # js_malloc and friends are only used by other memory managers, and should # never be used elsewhere directly. $(srcdir)/config/check_source_count.py "\bjs_malloc\b" 0 \ "in Makefile.in" "cx->malloc_ or rt->malloc_" $^ $(srcdir)/config/check_source_count.py "\bjs_calloc\b" 0 \ "in Makefile.in" "cx->calloc_ or rt->calloc_" $^