diff options
author | Andreas Gampe <agampe@google.com> | 2015-04-15 02:37:28 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2015-04-21 15:03:15 -0700 |
commit | 70bef0d8f6aa30b0da5c6ca56e1bc5729f74654b (patch) | |
tree | aea4a31294c5a6a30c52ee886d5884a0b5b84fde /compiler/linker | |
parent | bbf02afc641a393d33342976e269218668c07386 (diff) | |
download | art-70bef0d8f6aa30b0da5c6ca56e1bc5729f74654b.zip art-70bef0d8f6aa30b0da5c6ca56e1bc5729f74654b.tar.gz art-70bef0d8f6aa30b0da5c6ca56e1bc5729f74654b.tar.bz2 |
ART: Add compiled-methods
Add a dex2oat option for compiled-methods, a more granular filter
than compiled-classes. Add compiler-driver support for it.
Refactor dex2oat to reuse file reading.
Add a test to oat_test.
Change-Id: I78d0d040bce7738b4bb7aabe7768b5788d2587ac
Diffstat (limited to 'compiler/linker')
-rw-r--r-- | compiler/linker/relative_patcher_test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/linker/relative_patcher_test.h b/compiler/linker/relative_patcher_test.h index 70630f3..1f7500a 100644 --- a/compiler/linker/relative_patcher_test.h +++ b/compiler/linker/relative_patcher_test.h @@ -45,7 +45,7 @@ class RelativePatcherTest : public testing::Test { inliner_map_(), driver_(&compiler_options_, &verification_results_, &inliner_map_, Compiler::kQuick, instruction_set, nullptr, - false, nullptr, nullptr, 1u, + false, nullptr, nullptr, nullptr, 1u, false, false, "", nullptr, -1, ""), error_msg_(), instruction_set_(instruction_set), |