diff options
author | Scott Lobdell <slobdell@google.com> | 2019-03-12 18:45:06 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-03-12 18:45:06 +0000 |
commit | 1dd1c177c07a32cbb17e0f53eec45fcd8aa5f797 (patch) | |
tree | 7d1db0a1d25c8fc68df2595ecb3ae3583181235d /test/ProfileTestMultiDex/Second.java | |
parent | 9b495a27017400aa8c90ed5d52cfaa6d8d3c7234 (diff) | |
parent | 5cfa99872a45229b192309ae1aaec285d88d1484 (diff) |
Merge "Merge QP1A.190228.005" into q-keystone-qcom-dev
Diffstat (limited to 'test/ProfileTestMultiDex/Second.java')
-rw-r--r-- | test/ProfileTestMultiDex/Second.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ProfileTestMultiDex/Second.java b/test/ProfileTestMultiDex/Second.java index 4b3c7a479b..9f5dc66742 100644 --- a/test/ProfileTestMultiDex/Second.java +++ b/test/ProfileTestMultiDex/Second.java @@ -30,3 +30,11 @@ class SubC extends Super { int getValue() { return 24; } } +class TestIntrinsicOatdump { + Integer valueOf(int i) { + // ProfileTestMultiDex is used also for testing oatdump for apps. + // This is a regression test that oatdump can handle .data.bimg.rel.ro + // entries pointing to the middle of the "boot image live objects" array. + return Integer.valueOf(i); + } +} |