Reviewers: Mads Ager,

Description:
Fix debug build failure on ARM.

BUG=none
TEST=none


Please review this at http://codereview.chromium.org/5636005/

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     src/full-codegen.cc


Index: src/full-codegen.cc
===================================================================
--- src/full-codegen.cc (revision 5919)
+++ src/full-codegen.cc (working copy)
@@ -593,7 +593,7 @@
   ASSERT(function->intrinsic_type == Runtime::INLINE);
   InlineFunctionGenerator generator =
       FindInlineFunctionGenerator(function->function_id);
-  ASSERT(generator != NULL);
+  ASSERT(generator != 0);
   ((*this).*(generator))(args);
 }



--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to