diff options
| author | 2015-04-29 15:30:17 +0000 | |
|---|---|---|
| committer | 2015-04-29 15:30:18 +0000 | |
| commit | 0829d9de97b92bcd575f4d5c1f717abf7405d8e2 (patch) | |
| tree | 531fee01eef05df55c6247c657548f9511429050 /compiler/optimizing/code_generator.h | |
| parent | 36ad3f1c3c08a49680a8f5d34bba43199ab9dd5b (diff) | |
| parent | ec525fc30848189051b888da53ba051bc0878b78 (diff) | |
Merge "Factor MoveArguments methods in Optimizing's intrinsics handlers."
Diffstat (limited to 'compiler/optimizing/code_generator.h')
| -rw-r--r-- | compiler/optimizing/code_generator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h index beaff5cc4c..bdbd571133 100644 --- a/compiler/optimizing/code_generator.h +++ b/compiler/optimizing/code_generator.h @@ -327,6 +327,7 @@ class CodeGenerator { return GetFpuSpillSize() + GetCoreSpillSize(); } + virtual ParallelMoveResolver* GetMoveResolver() = 0; protected: CodeGenerator(HGraph* graph, @@ -370,7 +371,6 @@ class CodeGenerator { virtual Location GetStackLocation(HLoadLocal* load) const = 0; - virtual ParallelMoveResolver* GetMoveResolver() = 0; virtual HGraphVisitor* GetLocationBuilder() = 0; virtual HGraphVisitor* GetInstructionVisitor() = 0; |