summaryrefslogtreecommitdiff
path: root/compiler/common_compiler_test.cc
diff options
context:
space:
mode:
authorJeff Hao <jeffhao@google.com>2015-12-04 14:06:18 -0800
committerAndreas Gampe <agampe@google.com>2015-12-23 21:14:23 -0800
commitdcdc85bbd569f0ee66c331b4219c19304a616214 (patch)
treeb5ab789248e279318f6c1e3f6c511703d7294476 /compiler/common_compiler_test.cc
parent48944c760b196188b968b7af81439466cf987a75 (diff)
Dex2oat support for multiple oat file and image file outputs.
Multiple changes to dex2oat and the runtime to support a --multi-image option. This generates a separate oat file and image file output for each dex file input. Change-Id: Ie1d6f0b8afa8aed5790065b8c2eb177990c60129
Diffstat (limited to 'compiler/common_compiler_test.cc')
-rw-r--r--compiler/common_compiler_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/common_compiler_test.cc b/compiler/common_compiler_test.cc
index c7c190793c..278c49017e 100644
--- a/compiler/common_compiler_test.cc
+++ b/compiler/common_compiler_test.cc
@@ -208,7 +208,8 @@ void CommonCompilerTest::CreateCompilerDriver(Compiler::Kind kind, InstructionSe
false,
timer_.get(),
-1,
- ""));
+ /* profile_file */ "",
+ /* dex_to_oat_map */ nullptr));
// We typically don't generate an image in unit tests, disable this optimization by default.
compiler_driver_->SetSupportBootImageFixup(false);
}