diff options
author | Vladimir Marko <vmarko@google.com> | 2019-02-27 04:30:07 -0800 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-02-27 04:30:07 -0800 |
commit | 581745977ca1a2f3107830435de435cd6aa0b07a (patch) | |
tree | 90ab59966e687d4d801a3360d9af5264dd9f04f7 /test/ProfileTestMultiDex/Second.java | |
parent | 83825f36ec18e04a5a117ba295b8aa72721ca6dc (diff) | |
parent | 8f7513ebbb57a24ed7021e3e5e358e94758f6550 (diff) |
Revert^2 "Fix oatdump .data.bimg.rel.ro for intrinsics." am: ffe26cc54f
am: 8f7513ebbb
Change-Id: I9760d370034ab7d5985af925ef288ee09917a3c0
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); + } +} |