diff options
author | 2024-02-08 09:25:23 +0000 | |
---|---|---|
committer | 2025-03-19 05:59:18 -0700 | |
commit | 3d94fe6d114bac01f7957b248c363c9125fcf2d3 (patch) | |
tree | 24104d4f3f8029e7900f3da777ebc2f4974ad80c /compiler/optimizing/scheduler.cc | |
parent | 8a23cf5602e5f7293111bec325df14eff39e2a04 (diff) |
Introduce abstract instruction `HFieldAccess`.
Change-Id: Iaccc3a000f53a4b7198a45f04142983897f194f4
Diffstat (limited to 'compiler/optimizing/scheduler.cc')
-rw-r--r-- | compiler/optimizing/scheduler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/scheduler.cc b/compiler/optimizing/scheduler.cc index f4cf7b0a49..9deb37d106 100644 --- a/compiler/optimizing/scheduler.cc +++ b/compiler/optimizing/scheduler.cc @@ -118,7 +118,7 @@ static bool IsFieldAccess(const HInstruction* instruction) { } static const FieldInfo* GetFieldInfo(const HInstruction* instruction) { - return &instruction->GetFieldInfo(); + return &instruction->AsFieldAccess()->GetFieldInfo(); } size_t SideEffectDependencyAnalysis::MemoryDependencyAnalysis::FieldAccessHeapLocation( |