Type MoveOperands.

The ParallelMoveResolver implementation needs to know if a move
is for 64bits or not, to handle swaps correctly.

Bug found, and test case courtesy of Serguei I. Katkov.

Change-Id: I9a0917a1cfed398c07e57ad6251aea8c9b0b8506
diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h
index b888aca..e536b2d 100644
--- a/compiler/optimizing/code_generator.h
+++ b/compiler/optimizing/code_generator.h
@@ -244,7 +244,12 @@
   // 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.