Index: src/interpreter-irregexp.cc |
diff --git a/src/interpreter-irregexp.cc b/src/interpreter-irregexp.cc |
index 45f60755da4b120eb1e3512f18a729154d070535..796a447e2f1d2043c5b85468f75d66d52a2bc114 100644 |
--- a/src/interpreter-irregexp.cc |
+++ b/src/interpreter-irregexp.cc |
@@ -635,7 +635,7 @@ bool IrregexpInterpreter::Match(Isolate* isolate, |
AssertNoAllocation a; |
const byte* code_base = code_array->GetDataStartAddress(); |
uc16 previous_char = '\n'; |
- String::FlatContent subject_content = subject->GetFlatContent(a); |
+ String::FlatContent subject_content = subject->GetFlatContent(); |
if (subject_content.IsAscii()) { |
Vector<const char> subject_vector = subject_content.ToAsciiVector(); |
if (start_position != 0) previous_char = subject_vector[start_position - 1]; |