Index: src/code-stubs-hydrogen.cc |
diff --git a/src/code-stubs-hydrogen.cc b/src/code-stubs-hydrogen.cc |
index 18dfcac11f510975bcf10c0effd500317149b9bc..02c0091889d092e05010c3756120d2513c5637af 100644 |
--- a/src/code-stubs-hydrogen.cc |
+++ b/src/code-stubs-hydrogen.cc |
@@ -217,7 +217,6 @@ HValue* CodeStubGraphBuilder<FastCloneShallowArrayStub>::BuildCodeStub() { |
boilerplate, |
alloc_site_mode, |
FAST_ELEMENTS, |
- BailoutId::StubEntry(), |
0/*copy-on-write*/)); |
if_fixed_cow.BeginElse(); |
@@ -227,7 +226,6 @@ HValue* CodeStubGraphBuilder<FastCloneShallowArrayStub>::BuildCodeStub() { |
boilerplate, |
alloc_site_mode, |
FAST_ELEMENTS, |
- BailoutId::StubEntry(), |
length)); |
if_fixed.BeginElse(); |
@@ -235,7 +233,6 @@ HValue* CodeStubGraphBuilder<FastCloneShallowArrayStub>::BuildCodeStub() { |
boilerplate, |
alloc_site_mode, |
FAST_DOUBLE_ELEMENTS, |
- BailoutId::StubEntry(), |
length)); |
} else { |
ElementsKind elements_kind = casted_stub()->ComputeElementsKind(); |
@@ -243,7 +240,6 @@ HValue* CodeStubGraphBuilder<FastCloneShallowArrayStub>::BuildCodeStub() { |
boilerplate, |
alloc_site_mode, |
elements_kind, |
- BailoutId::StubEntry(), |
length)); |
} |