Index: src/objects-debug.cc |
diff --git a/src/objects-debug.cc b/src/objects-debug.cc |
index e99c45b35f053b2b2f586d10806f4584c2d123f8..593e955efb9d3d6c366ea90db3c0b9ca7e2243b9 100644 |
--- a/src/objects-debug.cc |
+++ b/src/objects-debug.cc |
@@ -474,7 +474,7 @@ void String::StringVerify() { |
void SeqOneByteString::SeqOneByteStringVerify() { |
#ifndef ENABLE_LATIN_1 |
- CHECK(!HasOnlyAsciiChars() || String::IsAscii(GetChars(), length())); |
+ CHECK(String::IsAscii(GetChars(), length())); |
#endif |
} |