Commit 2110b713 authored by lrn@chromium.org's avatar lrn@chromium.org

Added assignment to variable after UNIMPLEMENTED macro, to keep compiler happy.


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@875 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 467de7e8
......@@ -531,6 +531,7 @@ Handle<Object> RegExpImpl::IrregexpExecOnce(Handle<JSRegExp> regexp,
break;
#else
UNIMPLEMENTED();
rc = false;
break;
#endif
}
......@@ -2725,7 +2726,7 @@ Handle<FixedArray> RegExpEngine::Compile(RegExpParseResult* input,
if (FLAG_irregexp_native) {
#ifdef ARM
UNIMPLEMENTED();
// Unimplemented, fall-through to bytecode implementation.
#else // IA32
RegExpMacroAssemblerIA32 macro_assembler(RegExpMacroAssemblerIA32::UC16,
(input->capture_count + 1) * 2);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment