diff options
| author | 2015-05-11 13:46:48 +0000 | |
|---|---|---|
| committer | 2015-05-11 13:46:48 +0000 | |
| commit | 10bd3e5aae4c16221c80a8a116b2e860e4810d1f (patch) | |
| tree | 9770a29a5b74ad4c8d4f29789e6890d6432fc9c0 /compiler/optimizing/optimizing_compiler.cc | |
| parent | 58cdb84e46b585a7a5a5530d5ae3b4434a92fb26 (diff) | |
| parent | ec696e7fcdf1e519ad6710222975619d3ddb3e48 (diff) | |
am ec696e7f: am 796008a3: am 0e4c27e5: Merge "Add a parent environment to HEnvironment."
* commit 'ec696e7fcdf1e519ad6710222975619d3ddb3e48':
Add a parent environment to HEnvironment.
Diffstat (limited to 'compiler/optimizing/optimizing_compiler.cc')
| -rw-r--r-- | compiler/optimizing/optimizing_compiler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index 05451bcaa6..e993d778d4 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -512,7 +512,7 @@ CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_ite ArenaAllocator arena(Runtime::Current()->GetArenaPool()); HGraph* graph = new (&arena) HGraph( - &arena, compiler_driver->GetCompilerOptions().GetDebuggable()); + &arena, dex_file, method_idx, compiler_driver->GetCompilerOptions().GetDebuggable()); // For testing purposes, we put a special marker on method names that should be compiled // with this compiler. This makes sure we're not regressing. |