| Index: src/objects-inl.h | 
| diff --git a/src/objects-inl.h b/src/objects-inl.h | 
| index e588e1f904c0892647a77e4621c28c2065e179a5..34983cd7b3f49146fa8553cd6910d47c697753f3 100644 | 
| --- a/src/objects-inl.h | 
| +++ b/src/objects-inl.h | 
| @@ -341,12 +341,7 @@ bool String::IsTwoByteRepresentationUnderneath() { | 
|  | 
| bool String::HasOnlyAsciiChars() { | 
| uint32_t type = map()->instance_type(); | 
| -#ifndef ENABLE_LATIN_1 | 
| -  return (type & kStringEncodingMask) == kOneByteStringTag || | 
| -         (type & kAsciiDataHintMask) == kAsciiDataHintTag; | 
| -#else | 
| return (type & kAsciiDataHintMask) == kAsciiDataHintTag; | 
| -#endif | 
| } | 
|  | 
|  | 
|  |