diff options
author | 2017-01-13 14:17:29 +0000 | |
---|---|---|
committer | 2017-01-16 23:42:09 +0000 | |
commit | 5247c08fb186a5a2ac02226827cf6b994f41a681 (patch) | |
tree | 8b1305f9fb918024302382b8e8aa43962098e9fa /compiler/optimizing/inliner.h | |
parent | 0d478f289f0e33f19693d135f1d562b57427ed32 (diff) |
Put the resolved class in HLoadClass.
To avoid repeated lookups in sharpening/rtp/inlining.
Test: test-art-host test-art-target
Change-Id: I08d0da36a4bb061cdaa490ea2af3a3217a875bbe
Diffstat (limited to 'compiler/optimizing/inliner.h')
-rw-r--r-- | compiler/optimizing/inliner.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/inliner.h b/compiler/optimizing/inliner.h index 4c0b990f26..11aacab802 100644 --- a/compiler/optimizing/inliner.h +++ b/compiler/optimizing/inliner.h @@ -170,7 +170,7 @@ class HInliner : public HOptimization { HInstruction* cursor, HBasicBlock* bb_cursor, dex::TypeIndex class_index, - mirror::Class* klass, + Handle<mirror::Class> klass, HInstruction* invoke_instruction, bool with_deoptimization) REQUIRES_SHARED(Locks::mutator_lock_); |