Commit eb3bf208 authored by lrn@chromium.org's avatar lrn@chromium.org

Move reference to variable that isn't used on ARM.


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1610 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent fc0af92f
......@@ -417,7 +417,6 @@ Handle<Object> RegExpImpl::IrregexpExec(Handle<JSRegExp> jsregexp,
last_match_info->EnsureSize(number_of_capture_registers + kLastMatchOverhead);
int* offsets_vector = offsets.vector();
int offsets_vector_length = offsets.length();
bool rc;
// Dispatch to the correct RegExp implementation.
......@@ -438,7 +437,7 @@ Handle<Object> RegExpImpl::IrregexpExec(Handle<JSRegExp> jsregexp,
res = RegExpMacroAssemblerIA32::Match(code,
subject,
offsets_vector,
offsets_vector_length,
offsets.length(),
previous_index);
// If result is RETRY, the string have changed representation, and we
// must restart from scratch.
......
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