Index: src/types.cc |
diff --git a/src/types.cc b/src/types.cc |
index f631a925ceb89703cd564b8fac7ee854586bfbe0..3abc08dd9c15fd1816eaae1d89d97f1662dc469a 100644 |
--- a/src/types.cc |
+++ b/src/types.cc |
@@ -177,8 +177,8 @@ int TypeImpl<Config>::LubBitset(i::Map* map) { |
if (map == heap->the_hole_map()) return kAny; // TODO(rossberg): kNone? |
if (map == heap->null_map()) return kNull; |
if (map == heap->boolean_map()) return kBoolean; |
- if (map == heap->uninitialized_map()) return kNone; |
- ASSERT(map == heap->no_interceptor_result_sentinel_map() || |
+ ASSERT(map == heap->uninitialized_map() || |
+ map == heap->no_interceptor_result_sentinel_map() || |
map == heap->termination_exception_map() || |
map == heap->arguments_marker_map()); |
return kInternal & kTaggedPtr; |