Make --turbo-inlining available on the command line.
authorsvenpanne@chromium.org <svenpanne@chromium.org>
Thu, 11 Sep 2014 09:02:18 +0000 (09:02 +0000)
committersvenpanne@chromium.org <svenpanne@chromium.org>
Thu, 11 Sep 2014 09:02:18 +0000 (09:02 +0000)
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

index 162c65b..ce2ad6f 100644 (file)
@@ -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);