diff options
author | 2015-02-20 10:40:50 +0000 | |
---|---|---|
committer | 2015-02-20 10:40:51 +0000 | |
commit | 4fe292e2b6ba3980605373f183055a374084c65b (patch) | |
tree | cc689a549944d5302400aa155722e4e8715211b6 /compiler/optimizing/instruction_simplifier.h | |
parent | 76f82fc75f245101828e2fdbbdec676af1717f0b (diff) | |
parent | acf735c13998ad2a175f5a17e7bfce220073279d (diff) |
Merge "Reference type propagation"
Diffstat (limited to 'compiler/optimizing/instruction_simplifier.h')
-rw-r--r-- | compiler/optimizing/instruction_simplifier.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/compiler/optimizing/instruction_simplifier.h b/compiler/optimizing/instruction_simplifier.h index bca6697d05..a7ff755aed 100644 --- a/compiler/optimizing/instruction_simplifier.h +++ b/compiler/optimizing/instruction_simplifier.h @@ -19,6 +19,7 @@ #include "nodes.h" #include "optimization.h" +#include "optimizing_compiler_stats.h" namespace art { @@ -27,8 +28,10 @@ namespace art { */ class InstructionSimplifier : public HOptimization { public: - explicit InstructionSimplifier(HGraph* graph, const char* name = "instruction_simplifier") - : HOptimization(graph, true, name) {} + InstructionSimplifier(HGraph* graph, + OptimizingCompilerStats* stats = nullptr, + const char* name = "instruction_simplifier") + : HOptimization(graph, true, name, stats) {} void Run() OVERRIDE; }; |