Fixes stray IA32-reference in ARM builds
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@874 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
0269851619
commit
467de7e8cf
@ -505,6 +505,7 @@ Handle<Object> RegExpImpl::IrregexpExecOnce(Handle<JSRegExp> regexp,
|
||||
|
||||
switch (tag) {
|
||||
case RegExpMacroAssembler::kIA32Implementation: {
|
||||
#ifndef ARM
|
||||
Code* code = Code::cast(irregexp->get(kIrregexpCodeIndex));
|
||||
Address start_addr =
|
||||
Handle<SeqTwoByteString>::cast(two_byte_subject)->GetCharsAddress();
|
||||
@ -528,6 +529,10 @@ Handle<Object> RegExpImpl::IrregexpExecOnce(Handle<JSRegExp> regexp,
|
||||
}
|
||||
}
|
||||
break;
|
||||
#else
|
||||
UNIMPLEMENTED();
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
case RegExpMacroAssembler::kBytecodeImplementation: {
|
||||
Handle<ByteArray> byte_codes = IrregexpCode(regexp);
|
||||
|
Loading…
Reference in New Issue
Block a user