diff options
author | 2024-10-11 16:49:12 +0200 | |
---|---|---|
committer | 2025-02-28 00:24:38 -0800 | |
commit | 225ed9282e8676f13ec0b69786052684881596c3 (patch) | |
tree | eef492bdc3c3f5fd8c0524e04514c49922332d2e /compiler/optimizing/code_generator.cc | |
parent | a04fda337fa7bf06a2104a1a6c4dce04af110c18 (diff) |
Remove `HInstruction::GetAllocator()`.
And clean up some uses of
instruction->GetBlock()->GetGraph()->GetAllocator()
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Change-Id: Iae218056495a0b9cf94d2a3c1cebd6c8eb909096
Diffstat (limited to 'compiler/optimizing/code_generator.cc')
-rw-r--r-- | compiler/optimizing/code_generator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index 5c2e4dbc51..d63b0abcc7 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -645,7 +645,7 @@ void CodeGenerator::CreateUnresolvedFieldLocationSummary( bool is_get = field_access->IsUnresolvedInstanceFieldGet() || field_access->IsUnresolvedStaticFieldGet(); - ArenaAllocator* allocator = field_access->GetBlock()->GetGraph()->GetAllocator(); + ArenaAllocator* allocator = GetGraph()->GetAllocator(); LocationSummary* locations = new (allocator) LocationSummary(field_access, LocationSummary::kCallOnMainOnly); |