commit | 412f10cfed002ab617c78f2621d68446ca4dd8bd | [log] [tgz] |
---|---|---|
author | Nicolas Geoffray <ngeoffray@google.com> | Thu Jun 19 10:00:34 2014 +0100 |
committer | Nicolas Geoffray <ngeoffray@google.com> | Wed Jul 02 16:00:32 2014 +0100 |
tree | bbd9dddd0436da566365ada5deb1840e315e1b11 | |
parent | d6ab04646d8eec6f24b200f8649f3d942d9ad17e [diff] [blame] |
Support longs in the register allocator for x86_64. Change-Id: I7fb6dfb761bc5cf9e5705682032855a0a70ca867
diff --git a/compiler/optimizing/code_generator_arm.h b/compiler/optimizing/code_generator_arm.h index 712a24c..c46c1b1 100644 --- a/compiler/optimizing/code_generator_arm.h +++ b/compiler/optimizing/code_generator_arm.h
@@ -171,6 +171,10 @@ return &move_resolver_; } + virtual InstructionSet GetInstructionSet() const OVERRIDE { + return InstructionSet::kArm; + } + private: // Helper method to move a 32bits value between two locations. void Move32(Location destination, Location source);