diff options
author | 2015-04-15 14:10:29 +0000 | |
---|---|---|
committer | 2015-04-15 14:10:29 +0000 | |
commit | a76a08fed88bd081bcc4d240f1ba3472a2acbbab (patch) | |
tree | cd016bb007c3757ab2a6df28bc1a65d6a8e78e44 /compiler/optimizing/code_generator.h | |
parent | acf9b7b7616a9b104e6f2146051d8e14d9cb9030 (diff) | |
parent | 9021825d1e73998b99c81e89c73796f6f2845471 (diff) |
Merge "Type MoveOperands."
Diffstat (limited to 'compiler/optimizing/code_generator.h')
-rw-r--r-- | compiler/optimizing/code_generator.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h index b888aca264..e536b2d0ee 100644 --- a/compiler/optimizing/code_generator.h +++ b/compiler/optimizing/code_generator.h @@ -244,7 +244,12 @@ class CodeGenerator { // of the architecture. static size_t GetCacheOffset(uint32_t index); - void EmitParallelMoves(Location from1, Location to1, Location from2, Location to2); + void EmitParallelMoves(Location from1, + Location to1, + Primitive::Type type1, + Location from2, + Location to2, + Primitive::Type type2); static bool StoreNeedsWriteBarrier(Primitive::Type type, HInstruction* value) { // Check that null value is not represented as an integer constant. |