diff options
author | 2016-08-08 19:23:30 +0000 | |
---|---|---|
committer | 2016-08-08 19:23:30 +0000 | |
commit | 2f8d19f299274ffe6279044d885d10fa14cf127d (patch) | |
tree | 9a8456bfebcfcc04e43568d33d7698895aa64722 /compiler/jit/jit_compiler.cc | |
parent | 61cd79bdea19f2ad4d4d1435c58e86406fd20911 (diff) | |
parent | 5319d3cca5a9b8e9e3f59421818272b966575172 (diff) |
Merge "Implement running user defined list of passes"
Diffstat (limited to 'compiler/jit/jit_compiler.cc')
-rw-r--r-- | compiler/jit/jit_compiler.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/jit/jit_compiler.cc b/compiler/jit/jit_compiler.cc index 2dd87a8483..6f6a8f5a3b 100644 --- a/compiler/jit/jit_compiler.cc +++ b/compiler/jit/jit_compiler.cc @@ -112,7 +112,8 @@ JitCompiler::JitCompiler() { /* dump_cfg_file_name */ "", /* dump_cfg_append */ false, /* force_determinism */ false, - RegisterAllocator::kRegisterAllocatorDefault)); + RegisterAllocator::kRegisterAllocatorDefault, + /* passes_to_run */ nullptr)); for (const std::string& argument : Runtime::Current()->GetCompilerOptions()) { compiler_options_->ParseCompilerOption(argument, Usage); } |