JIT baseline: don't update inline caches for intrinsics.
We already know the target.
Bug: 119800099
Test: test.py --baseline
Change-Id: I14cdafe233fec83a1f69e307326858c591309c34
diff --git a/compiler/optimizing/code_generator_x86_64.h b/compiler/optimizing/code_generator_x86_64.h
index 20db423..5537a4a 100644
--- a/compiler/optimizing/code_generator_x86_64.h
+++ b/compiler/optimizing/code_generator_x86_64.h
@@ -600,7 +600,7 @@
void GenerateNop() override;
void GenerateImplicitNullCheck(HNullCheck* instruction) override;
void GenerateExplicitNullCheck(HNullCheck* instruction) override;
- void MaybeGenerateInlineCacheCheck(uint32_t dex_pc, CpuRegister cls);
+ void MaybeGenerateInlineCacheCheck(HInstruction* instruction, CpuRegister cls);
// When we don't know the proper offset for the value, we use kDummy32BitOffset.