diff options
| author | 2015-07-22 11:20:01 +0000 | |
|---|---|---|
| committer | 2015-07-22 11:20:01 +0000 | |
| commit | a3073e24e00274d2957771518be5ecfa74591744 (patch) | |
| tree | 0b07b7c0b70bb9e3c89b9b7c1ea58b59079be9c3 /compiler/optimizing/optimizing_compiler.cc | |
| parent | 236d0a3c35a369da99bb1f0c617a29f23b2f4df8 (diff) | |
| parent | b0d5fc0ac139da4aaa1440263416b9bde05630b0 (diff) | |
Merge "Fixes and improvements in ReferenceTypePropagation"
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 710d3bcef0..601d668995 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -380,7 +380,8 @@ static void RunOptimizations(HGraph* graph, InstructionSimplifier* simplify3 = new (arena) InstructionSimplifier( graph, stats, "instruction_simplifier_after_bce"); ReferenceTypePropagation* type_propagation2 = - new (arena) ReferenceTypePropagation(graph, handles); + new (arena) ReferenceTypePropagation( + graph, handles, "reference_type_propagation_after_inlining"); InstructionSimplifier* simplify4 = new (arena) InstructionSimplifier( graph, stats, "instruction_simplifier_before_codegen"); |