diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-10-30 18:20:07 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-10-30 18:20:07 +0000 |
commit | 26dcecb0ef620fb225cd5dd39f6e41b07e34c83d (patch) | |
tree | 5f4d8b1584059dc9570be48030fe4c6aad82457b /compiler/optimizing/code_generator.h | |
parent | 29ce77f654412dbb5fb3d5949da4053952917101 (diff) | |
parent | 3c03503d66df3b4440f851ae7d0c4fae5e7872df (diff) | |
download | art-26dcecb0ef620fb225cd5dd39f6e41b07e34c83d.zip art-26dcecb0ef620fb225cd5dd39f6e41b07e34c83d.tar.gz art-26dcecb0ef620fb225cd5dd39f6e41b07e34c83d.tar.bz2 |
Merge "Follow-up CL after hard float changes."
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 bf9d2c0..71f0b1b 100644 --- a/compiler/optimizing/code_generator.h +++ b/compiler/optimizing/code_generator.h @@ -190,7 +190,7 @@ class CodeGenerator : public ArenaObject { virtual Location AllocateFreeRegister(Primitive::Type type) const = 0; static size_t FindFreeEntry(bool* array, size_t length); - static size_t FindTwoFreeConsecutiveEntries(bool* array, size_t length); + static size_t FindTwoFreeConsecutiveAlignedEntries(bool* array, size_t length); virtual Location GetStackLocation(HLoadLocal* load) const = 0; |