summaryrefslogtreecommitdiff
path: root/deps/v8/src/crankshaft/lithium.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/crankshaft/lithium.cc')
-rw-r--r--deps/v8/src/crankshaft/lithium.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/deps/v8/src/crankshaft/lithium.cc b/deps/v8/src/crankshaft/lithium.cc
index 8cf3a3f0e6..94d60418fd 100644
--- a/deps/v8/src/crankshaft/lithium.cc
+++ b/deps/v8/src/crankshaft/lithium.cc
@@ -5,6 +5,7 @@
#include "src/crankshaft/lithium.h"
#include "src/ast/scopes.h"
+#include "src/codegen.h"
#if V8_TARGET_ARCH_IA32
#include "src/crankshaft/ia32/lithium-ia32.h" // NOLINT
@@ -260,7 +261,6 @@ LChunk::LChunk(CompilationInfo* info, HGraph* graph)
graph_(graph),
instructions_(32, info->zone()),
pointer_maps_(8, info->zone()),
- inlined_functions_(1, info->zone()),
deprecation_dependencies_(32, info->zone()),
stability_dependencies_(8, info->zone()) {}
@@ -468,8 +468,6 @@ Handle<Code> LChunk::Codegen() {
code->set_is_crankshafted(true);
CodeGenerator::PrintCode(code, info());
- DCHECK(!(info()->GetMustNotHaveEagerFrame() &&
- generator.NeedsEagerFrame()));
return code;
}
assembler.AbortedCodeGeneration();