From: ager@chromium.org Date: Tue, 9 Sep 2008 08:06:27 +0000 (+0000) Subject: Fix the debug build. X-Git-Tag: upstream/4.7.83~25421 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4316e6c2d3887bc5ff4abe77385b04efeb05aac2;p=platform%2Fupstream%2Fv8.git Fix the debug build. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@228 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/runtime.cc b/src/runtime.cc index 88e9101..0f7797c 100644 --- a/src/runtime.cc +++ b/src/runtime.cc @@ -3447,7 +3447,7 @@ static Object* Runtime_SetNewFunctionAttributes(Arguments args) { // array. Returns true if the element was pushed on the stack and // false otherwise. static Object* Runtime_PushIfAbsent(Arguments args) { - ASSERT(args.length == 2); + ASSERT(args.length() == 2); CONVERT_CHECKED(JSArray, array, args[0]); CONVERT_CHECKED(JSArray, element, args[1]); CHECK(array->HasFastElements());