Index: src/compiler/access-info.cc |
diff --git a/src/compiler/access-info.cc b/src/compiler/access-info.cc |
index 2703e8cc83dcade5f0beeb45a70b5d5a661d431c..4748023c16c7d1ff9cb460fb90a919d9721f78c6 100644 |
--- a/src/compiler/access-info.cc |
+++ b/src/compiler/access-info.cc |
@@ -141,11 +141,6 @@ bool AccessInfoFactory::ComputeElementAccessInfo( |
if (!CanInlineElementAccess(map)) return false; |
ElementsKind const elements_kind = map->elements_kind(); |
- if (access_mode == AccessMode::kLoad && |
- elements_kind == FAST_HOLEY_DOUBLE_ELEMENTS) { |
- // TODO(bmeurer): Add support for holey loads. |
- return false; |
- } |
// Certain (monomorphic) stores need a prototype chain check because shape |
// changes could allow callbacks on elements in the chain that are not |