diff options
author | Calin Juravle <calin@google.com> | 2017-03-07 23:27:22 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-03-07 23:27:23 +0000 |
commit | a6fa68f22965ae065f06bebd1388a8ebfdeedca6 (patch) | |
tree | 817791f8a5cbba017e2e2efbc156c6932440a3b1 /test/ProfileTestMultiDex | |
parent | 7733305ab5716d1b1399bd7e261bfa6396eabba3 (diff) | |
parent | 589e71eb71477603c88b14118b2d3a33508c3c79 (diff) |
Merge "Encode inline caches with missing types in the profile"
Diffstat (limited to 'test/ProfileTestMultiDex')
-rw-r--r-- | test/ProfileTestMultiDex/Main.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ProfileTestMultiDex/Main.java b/test/ProfileTestMultiDex/Main.java index 73fbb00d25..a8ced544c9 100644 --- a/test/ProfileTestMultiDex/Main.java +++ b/test/ProfileTestMultiDex/Main.java @@ -39,6 +39,10 @@ class TestInline { return s.getValue(); } + public int inlineMissingTypes(Super s) { + return s.getValue(); + } + public int noInlineCache(Super s) { return s.getValue(); } |