diff options
author | Calin Juravle <calin@google.com> | 2016-03-16 14:40:08 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-03-16 14:40:08 +0000 |
commit | 914d71ead70bb6f2084b2ed39a9fd58fd014f67d (patch) | |
tree | 50f30d6e47d18aa6c3ccec9f05727b4898268b20 /compiler/optimizing/optimizing_compiler.cc | |
parent | 1583e624d4c970d8e571b265b9a8f08402d91f82 (diff) | |
parent | 2ae48182573da7087bffc2873730bc758ec29696 (diff) |
Merge "Clean up NullCheck generation and record stats about it."
Diffstat (limited to 'compiler/optimizing/optimizing_compiler.cc')
-rw-r--r-- | compiler/optimizing/optimizing_compiler.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index a42b8872ab..4d2469ca15 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -698,7 +698,8 @@ CodeGenerator* OptimizingCompiler::TryCompile(ArenaAllocator* arena, CodeGenerator::Create(graph, instruction_set, *compiler_driver->GetInstructionSetFeatures(), - compiler_driver->GetCompilerOptions())); + compiler_driver->GetCompilerOptions(), + compilation_stats_.get())); if (codegen.get() == nullptr) { MaybeRecordStat(MethodCompilationStat::kNotCompiledNoCodegen); return nullptr; |