| Index: src/regexp-macro-assembler-ia32.h
|
| diff --git a/src/regexp-macro-assembler-ia32.h b/src/regexp-macro-assembler-ia32.h
|
| index d303910f16ad065ff39c8a689c7a45ee73ad9f23..f8afe6fea7b41764059cb96d5435cbf7a2ae2ef5 100644
|
| --- a/src/regexp-macro-assembler-ia32.h
|
| +++ b/src/regexp-macro-assembler-ia32.h
|
| @@ -119,8 +119,12 @@ class RegExpMacroAssemblerIA32: public RegExpMacroAssembler {
|
| static const int kRegExpConstantsSize = 256;
|
| // Only unroll loops up to this length.
|
| static const int kMaxInlineStringTests = 8;
|
| - // Special "character" marking end of input.
|
| - static const uint32_t kEndOfInput = ~0;
|
| +
|
| + // Compares two-byte strings case insenstively.
|
| + static int CaseInsensitiveCompareUC16(uc16** buffer,
|
| + int byte_offset1,
|
| + int byte_offset2,
|
| + size_t byte_length);
|
|
|
| // The ebp-relative location of a regexp register.
|
| Operand register_location(int register_index);
|
|
|