diff options
author | Andreas Gampe <agampe@google.com> | 2014-06-10 16:10:56 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2014-06-10 16:21:33 -0700 |
commit | 4d0589c90971e19c25894414ae7da579269e1fe2 (patch) | |
tree | 0bb8a8bea051cfee85e26719eaf4045da9fb2132 /runtime/oat.cc | |
parent | 69d57a89595c7c0fba7b7f7b7c6b431a92137215 (diff) | |
download | art-4d0589c90971e19c25894414ae7da579269e1fe2.tar.gz art-4d0589c90971e19c25894414ae7da579269e1fe2.tar.bz2 art-4d0589c90971e19c25894414ae7da579269e1fe2.zip |
ART: Move __memcmp16 from Bionic to ART
Handle __memcmp16 / MemCmp16 in ART. Import assembly implementations
for arm and mips from Bionic. Use a generic C version for all other
platforms.
Removes the memcmp16 quick entrypoint, as it is never used. Bump
the oat version and update thread.cc and checks to reflect the
structural change.
Change-Id: I54a5a1da2a0a43ef271c8aeda0bf2276b8b11ac6
Diffstat (limited to 'runtime/oat.cc')
-rw-r--r-- | runtime/oat.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/oat.cc b/runtime/oat.cc index 96834b8527..ecd1983140 100644 --- a/runtime/oat.cc +++ b/runtime/oat.cc @@ -22,7 +22,7 @@ namespace art { const uint8_t OatHeader::kOatMagic[] = { 'o', 'a', 't', '\n' }; -const uint8_t OatHeader::kOatVersion[] = { '0', '3', '3', '\0' }; +const uint8_t OatHeader::kOatVersion[] = { '0', '3', '4', '\0' }; OatHeader::OatHeader() { memset(this, 0, sizeof(*this)); |