Index: src/ic/handler-compiler.cc |
diff --git a/src/ic/handler-compiler.cc b/src/ic/handler-compiler.cc |
index 16e42cebd6a673981e84629dcb9e9c6dba941a62..a89ca8e902b82ac0cb96dd996ddc862c50133608 100644 |
--- a/src/ic/handler-compiler.cc |
+++ b/src/ic/handler-compiler.cc |
@@ -347,7 +347,7 @@ void NamedLoadHandlerCompiler::GenerateLoadPostInterceptor( |
case LookupIterator::ACCESSOR: |
Handle<ExecutableAccessorInfo> info = |
Handle<ExecutableAccessorInfo>::cast(it->GetAccessors()); |
- DCHECK_NE(NULL, info->getter()); |
+ DCHECK(info->getter()); |
GenerateLoadCallback(reg, info); |
} |
} |