Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index 94a122800b17df1047d6f921e5c3ef771ef0e799..ac1a1b2cf189c31c25b3ab885145ced1ed468e35 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_NOT_NULL(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_NOT_NULL(code); |
return code; |
} |