Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index 94a122800b17df1047d6f921e5c3ef771ef0e799..e5198bb43143202503e6b864f63a2ce63ffafe13 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -9589,7 +9589,7 @@ FixedArray* SharedFunctionInfo::GetLiteralsFromOptimizedCodeMap(int index) { |
FixedArray* code_map = FixedArray::cast(optimized_code_map()); |
if (!bound()) { |
FixedArray* cached_literals = FixedArray::cast(code_map->get(index + 1)); |
- DCHECK_NE(NULL, cached_literals); |
+ DCHECK(cached_literals); |
return cached_literals; |
} |
return NULL; |
@@ -9600,7 +9600,7 @@ Code* SharedFunctionInfo::GetCodeFromOptimizedCodeMap(int index) { |
DCHECK(index > kEntriesStart); |
FixedArray* code_map = FixedArray::cast(optimized_code_map()); |
Code* code = Code::cast(code_map->get(index)); |
- DCHECK_NE(NULL, code); |
+ DCHECK(code); |
return code; |
} |