diff options
author | Vladimir Marko <vmarko@google.com> | 2019-02-27 04:09:02 -0800 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-02-27 04:09:02 -0800 |
commit | 8f7513ebbb57a24ed7021e3e5e358e94758f6550 (patch) | |
tree | 90ab59966e687d4d801a3360d9af5264dd9f04f7 /test/ProfileTestMultiDex | |
parent | ef98d63bdf2270a70575f72a1165ce98caf4e3c9 (diff) | |
parent | ffe26cc54fac4f1997e5dbf6991da9e95ce49e31 (diff) |
Revert^2 "Fix oatdump .data.bimg.rel.ro for intrinsics."
am: ffe26cc54f
Change-Id: I6fd91a51344b2e8db1c89bd9db0d7d4ca711590f
Diffstat (limited to 'test/ProfileTestMultiDex')
-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); + } +} |