diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-07-18 14:37:36 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-07-18 14:37:36 +0000 |
commit | d44c0d8c7f96644f8176e493de2fbde3eb198bb4 (patch) | |
tree | dee702cd8570b7993a13d34789ed5b819913ccc8 /test/MultiDex/Second.java | |
parent | 24ff0235ab631baccd49fb491197d86d1ef97279 (diff) | |
parent | b02ba93fb8089ae70229c4e3e90478cb4a9e4668 (diff) |
Merge "Don't encode OatQuickMethodHeader for non-compiled methods."
Diffstat (limited to 'test/MultiDex/Second.java')
-rw-r--r-- | test/MultiDex/Second.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/MultiDex/Second.java b/test/MultiDex/Second.java index 540aedbb1a7..5067bcc2e8a 100644 --- a/test/MultiDex/Second.java +++ b/test/MultiDex/Second.java @@ -18,4 +18,10 @@ class Second { public String getSecond() { return "I Second That."; } + + // This method makes sure the second dex file has quickening + // instructions. + public String callSecond() { + return getSecond(); + } } |