| Index: src/regexp-macro-assembler-tracer.cc
|
| diff --git a/src/regexp-macro-assembler-tracer.cc b/src/regexp-macro-assembler-tracer.cc
|
| index 0aad3373789aab795a8f57dbf3775274db2080aa..c5c2919c3fb9d5bf71fd1357c99dacc19cd70c1a 100644
|
| --- a/src/regexp-macro-assembler-tracer.cc
|
| +++ b/src/regexp-macro-assembler-tracer.cc
|
| @@ -307,18 +307,11 @@ void RegExpMacroAssemblerTracer::CheckCharacters(Vector<const uc16> str,
|
|
|
| bool RegExpMacroAssemblerTracer::CheckSpecialCharacterClass(
|
| uc16 type,
|
| - int cp_offset,
|
| - bool check_offset,
|
| Label* on_no_match) {
|
| bool supported = assembler_->CheckSpecialCharacterClass(type,
|
| - cp_offset,
|
| - check_offset,
|
| on_no_match);
|
| - PrintF(" CheckSpecialCharacterClass(type='%c', offset=%d, "
|
| - "check_offset=%s, label[%08x]): %s;\n",
|
| + PrintF(" CheckSpecialCharacterClass(type='%c', label[%08x]): %s;\n",
|
| type,
|
| - cp_offset,
|
| - check_offset ? "true" : "false",
|
| on_no_match,
|
| supported ? "true" : "false");
|
| return supported;
|
|
|