From a1337ae5672e8ee4941ea39df2d2f7cd806564ec Mon Sep 17 00:00:00 2001 From: "svenpanne@chromium.org" Date: Thu, 11 Sep 2014 09:02:18 +0000 Subject: [PATCH] Make --turbo-inlining available on the command line. R=mstarzinger@chromium.org Review URL: https://codereview.chromium.org/565593002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23857 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/compiler.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler.cc b/src/compiler.cc index 162c65b..ce2ad6f 100644 --- a/src/compiler.cc +++ b/src/compiler.cc @@ -140,6 +140,7 @@ void CompilationInfo::Initialize(Isolate* isolate, if (isolate_->debug()->is_active()) MarkAsDebug(); if (FLAG_context_specialization) MarkAsContextSpecializing(); if (FLAG_turbo_types) MarkAsTypingEnabled(); + if (FLAG_turbo_inlining) MarkAsInliningEnabled(); if (!shared_info_.is_null()) { DCHECK(strict_mode() == SLOPPY); -- 2.7.4