Index: src/objects-debug.cc |
diff --git a/src/objects-debug.cc b/src/objects-debug.cc |
index c8246c86c9615b5b247fd4f674434caae1a45fab..c1caef2d98b0d79cbd4b6bb2785f9f13842492de 100644 |
--- a/src/objects-debug.cc |
+++ b/src/objects-debug.cc |
@@ -440,7 +440,7 @@ void JSRegExp::JSRegExpVerify() { |
ASSERT(ascii_data->IsTheHole() || ascii_data->IsJSObject() || |
(is_native ? ascii_data->IsCode() : ascii_data->IsByteArray())); |
Object* uc16_data = arr->get(JSRegExp::kIrregexpUC16CodeIndex); |
- ASSERT(uc16_data->IsTheHole() || ascii_data->IsJSObject() || |
+ ASSERT(uc16_data->IsTheHole() || uc16_data->IsJSObject() || |
(is_native ? uc16_data->IsCode() : uc16_data->IsByteArray())); |
ASSERT(arr->get(JSRegExp::kIrregexpCaptureCountIndex)->IsSmi()); |
ASSERT(arr->get(JSRegExp::kIrregexpMaxRegisterCountIndex)->IsSmi()); |