diff options
| author | 2017-05-11 11:42:28 +0000 | |
|---|---|---|
| committer | 2017-05-11 11:42:30 +0000 | |
| commit | 99a77162e9dc351da14bb7819a2718395d7277ed (patch) | |
| tree | 1c02905cb5f2573bd3bf8c8f1effc50c91086593 /compiler/optimizing/codegen_test.cc | |
| parent | 32a680a5799fffede606b817fae1643250bb1d76 (diff) | |
| parent | 7d157fcaaae137cc98dbfb872aa1bdc0105a898f (diff) | |
Merge "Clean up some uses of "auto"."
Diffstat (limited to 'compiler/optimizing/codegen_test.cc')
| -rw-r--r-- | compiler/optimizing/codegen_test.cc | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc index 7e3c377198..fe25b7690d 100644 --- a/compiler/optimizing/codegen_test.cc +++ b/compiler/optimizing/codegen_test.cc @@ -64,7 +64,7 @@ static ::std::vector<CodegenTargetConfig> GetTargetConfigs() {  #endif    }; -  for (auto test_config : test_config_candidates) { +  for (const CodegenTargetConfig& test_config : test_config_candidates) {      if (CanExecute(test_config.GetInstructionSet())) {        v.push_back(test_config);      } @@ -76,7 +76,7 @@ static ::std::vector<CodegenTargetConfig> GetTargetConfigs() {  static void TestCode(const uint16_t* data,                       bool has_result = false,                       int32_t expected = 0) { -  for (CodegenTargetConfig target_config : GetTargetConfigs()) { +  for (const CodegenTargetConfig& target_config : GetTargetConfigs()) {      ArenaPool pool;      ArenaAllocator arena(&pool);      HGraph* graph = CreateCFG(&arena, data); @@ -89,7 +89,7 @@ static void TestCode(const uint16_t* data,  static void TestCodeLong(const uint16_t* data,                           bool has_result,                           int64_t expected) { -  for (CodegenTargetConfig target_config : GetTargetConfigs()) { +  for (const CodegenTargetConfig& target_config : GetTargetConfigs()) {      ArenaPool pool;      ArenaAllocator arena(&pool);      HGraph* graph = CreateCFG(&arena, data, Primitive::kPrimLong); |