OSDN Git Service

Fix initialization of field after conflicting merges.
authorNicolas Geoffray <ngeoffray@google.com>
Thu, 14 Apr 2016 13:17:29 +0000 (14:17 +0100)
committerNicolas Geoffray <ngeoffray@google.com>
Thu, 14 Apr 2016 13:17:29 +0000 (14:17 +0100)
Change-Id: I5c887d5cbcd94f51c3566e964d217a906dbaa9ea

runtime/jit/jit.cc

index 4ba90c1..558e443 100644 (file)
@@ -153,6 +153,7 @@ Jit* Jit::Create(JitOptions* options, std::string* error_msg) {
   jit->hot_method_threshold_ = options->GetCompileThreshold();
   jit->warm_method_threshold_ = options->GetWarmupThreshold();
   jit->osr_method_threshold_ = options->GetOsrThreshold();
+  jit->priority_thread_weight_ = options->GetPriorityThreadWeight();
 
   jit->CreateThreadPool();