| Index: src/regexp-macro-assembler-ia32.cc
|
| ===================================================================
|
| --- src/regexp-macro-assembler-ia32.cc (revision 786)
|
| +++ src/regexp-macro-assembler-ia32.cc (working copy)
|
| @@ -121,12 +121,22 @@
|
| }
|
|
|
|
|
| -void RegExpMacroAssemblerIA32::CheckCharacterClass(RegExpCharacterClass *cclass,
|
| - Label* on_failure) {
|
| +void RegExpMacroAssemblerIA32::LoadCurrentCharacter(int cp_offset,
|
| + Label* on_end_of_input) {
|
| UNREACHABLE(); // Not implemented.
|
| }
|
|
|
|
|
| +void RegExpMacroAssemblerIA32::CheckCharacterLT(uc16 limit, Label* on_less) {
|
| + UNREACHABLE(); // Not implemented.
|
| +}
|
| +
|
| +
|
| +void RegExpMacroAssemblerIA32::CheckCharacterGT(uc16 limit, Label* on_greater) {
|
| + UNREACHABLE(); // Not implemented.
|
| +}
|
| +
|
| +
|
| void RegExpMacroAssemblerIA32::CheckCharacters(Vector<uc16> str,
|
| Label* on_failure) {
|
| if (sizeof(SubjectChar) == 1) {
|
|
|