Status: New
Owner: ----

New issue 989 by coolaj86: src/full-codegen.cc:687: error: NULL used in arithmetic
http://code.google.com/p/v8/issues/detail?id=989



svn checkout http://v8.googlecode.com/svn/trunk/ v8-read-only
cd v8-read-only

CCFLAGS="-march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -mthumb-interwork -mno-thumb" scons mode=debug snapshot=on library=shared importenv=CCFLAGS


void FullCodeGenerator::EmitInlineRuntimeCall(CallRuntime* node) {
  ZoneList<Expression*>* args = node->arguments();
  Handle<String> name = node->name();
  Runtime::Function* function = node->function();
  ASSERT(function != NULL);
  ASSERT(function->intrinsic_type == Runtime::INLINE);
  InlineFunctionGenerator generator =
      FindInlineFunctionGenerator(function->function_id);
687:  ASSERT(generator != NULL);
  ((*this).*(generator))(args);
}



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

Reply via email to