Merge "Fix initialization of field after conflicting merges."
diff --git a/runtime/jit/jit.cc b/runtime/jit/jit.cc
index 4ba90c1..558e443 100644
--- a/runtime/jit/jit.cc
+++ b/runtime/jit/jit.cc
@@ -153,6 +153,7 @@
   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();