diff options
author | Alex Light <allight@google.com> | 2021-03-31 23:07:16 +0000 |
---|---|---|
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2021-03-31 23:07:16 +0000 |
commit | 21df6ee0701ad11036a21f29b29d7f7c293638ab (patch) | |
tree | 9b2cfcb03a321244431597d06017a2d6dfaabee7 /test/ProfileTestMultiDex/Main.java | |
parent | 8cfbf9d4acddba59ab1ce58c1b66f2eb3c80e6c8 (diff) | |
parent | 80f5b835d108b40ecc4dbcb9ccffbfd54e2b724b (diff) |
Better support ICs on virtual calls am: cff30a0bfa am: af9edf3640 am: 80f5b835d1
Original change: https://android-review.googlesource.com/c/platform/art/+/1654168
Change-Id: Ie6e2fcc0ca1404d348f355872b99e12f025f12ba
Diffstat (limited to 'test/ProfileTestMultiDex/Main.java')
-rw-r--r-- | test/ProfileTestMultiDex/Main.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ProfileTestMultiDex/Main.java b/test/ProfileTestMultiDex/Main.java index a84cb98543..98d4d96281 100644 --- a/test/ProfileTestMultiDex/Main.java +++ b/test/ProfileTestMultiDex/Main.java @@ -72,6 +72,12 @@ class TestInline { } } +class TestInlineSubtype extends TestInline { + public void foobar() { + this.inlineMonomorphic(new SubA()); + } +} + abstract class Secret { abstract int getIdentity(); } |