Index: src/ia32/code-stubs-ia32.cc |
diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc |
index 2ba08c56d56e806ea13617ba226e6a1e9e4b63f1..86f2b159a22f497562f92a0ec15105285749b113 100644 |
--- a/src/ia32/code-stubs-ia32.cc |
+++ b/src/ia32/code-stubs-ia32.cc |
@@ -5516,18 +5516,13 @@ static void CreateArrayDispatchOneArgument(MacroAssembler* masm, |
template<class T> |
static void ArrayConstructorStubAheadOfTimeHelper(Isolate* isolate) { |
- ElementsKind initial_kind = GetInitialFastElementsKind(); |
- ElementsKind initial_holey_kind = GetHoleyElementsKind(initial_kind); |
- |
int to_index = GetSequenceIndexFromFastElementsKind( |
TERMINAL_FAST_ELEMENTS_KIND); |
for (int i = 0; i <= to_index; ++i) { |
ElementsKind kind = GetFastElementsKindFromSequenceIndex(i); |
T stub(kind); |
stub.GetCode(isolate); |
- if (AllocationSite::GetMode(kind) != DONT_TRACK_ALLOCATION_SITE || |
- (!FLAG_track_allocation_sites && |
- (kind == initial_kind || kind == initial_holey_kind))) { |
+ if (AllocationSite::GetMode(kind) != DONT_TRACK_ALLOCATION_SITE) { |
T stub1(kind, CONTEXT_CHECK_REQUIRED, DISABLE_ALLOCATION_SITES); |
stub1.GetCode(isolate); |
} |