Baseline JIT: update inline caches in compiled code.

In trying to remove profiling from interpreter, to speed up
interpreter performance.

Bug: 119800099
Test: test.py --baseline
Change-Id: Ica1fa41a889b31262d9f5691b30a31fbcec01b34
diff --git a/runtime/entrypoints/quick/quick_default_init_entrypoints.h b/runtime/entrypoints/quick/quick_default_init_entrypoints.h
index f5bb5a3..d41f9a0 100644
--- a/runtime/entrypoints/quick/quick_default_init_entrypoints.h
+++ b/runtime/entrypoints/quick/quick_default_init_entrypoints.h
@@ -124,6 +124,9 @@
 
   // StringBuilder append
   qpoints->pStringBuilderAppend = art_quick_string_builder_append;
+
+  // InlineCache update
+  qpoints->pUpdateInlineCache = art_quick_update_inline_cache;
 }
 
 }  // namespace art