From d4c4d953035d4418126d36517e402f411d6a87f3 Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Thu, 16 Oct 2014 20:31:53 -0700 Subject: Some code clean-up. Change-Id: I4b745fd5298cd61c793e3b57514b48347bd66c0e --- compiler/common_compiler_test.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'compiler/common_compiler_test.cc') diff --git a/compiler/common_compiler_test.cc b/compiler/common_compiler_test.cc index 9a5f74db91..359d6af57d 100644 --- a/compiler/common_compiler_test.cc +++ b/compiler/common_compiler_test.cc @@ -150,8 +150,7 @@ void CommonCompilerTest::SetUp() { } // TODO: make selectable - Compiler::Kind compiler_kind - = (kUsePortableCompiler) ? Compiler::kPortable : Compiler::kQuick; + Compiler::Kind compiler_kind = kUsePortableCompiler ? Compiler::kPortable : Compiler::kQuick; timer_.reset(new CumulativeLogger("Compilation times")); compiler_driver_.reset(new CompilerDriver(compiler_options_.get(), verification_results_.get(), @@ -159,7 +158,7 @@ void CommonCompilerTest::SetUp() { compiler_kind, instruction_set, instruction_set_features_.get(), true, new std::set, - 2, true, true, timer_.get())); + 2, true, true, timer_.get(), "")); } // We typically don't generate an image in unit tests, disable this optimization by default. compiler_driver_->SetSupportBootImageFixup(false); -- cgit v1.2.3-59-g8ed1b