summaryrefslogtreecommitdiffstats
path: root/compiler/oat_test.cc
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-06-10 16:10:56 -0700
committerAndreas Gampe <agampe@google.com>2014-06-10 16:21:33 -0700
commit4d0589c90971e19c25894414ae7da579269e1fe2 (patch)
tree0bb8a8bea051cfee85e26719eaf4045da9fb2132 /compiler/oat_test.cc
parent69d57a89595c7c0fba7b7f7b7c6b431a92137215 (diff)
downloadart-4d0589c90971e19c25894414ae7da579269e1fe2.zip
art-4d0589c90971e19c25894414ae7da579269e1fe2.tar.gz
art-4d0589c90971e19c25894414ae7da579269e1fe2.tar.bz2
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 'compiler/oat_test.cc')
-rw-r--r--compiler/oat_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/oat_test.cc b/compiler/oat_test.cc
index 49cf71b..0b7272c 100644
--- a/compiler/oat_test.cc
+++ b/compiler/oat_test.cc
@@ -180,7 +180,7 @@ TEST_F(OatTest, OatHeaderSizeCheck) {
EXPECT_EQ(80U, sizeof(OatHeader));
EXPECT_EQ(8U, sizeof(OatMethodOffsets));
EXPECT_EQ(24U, sizeof(OatQuickMethodHeader));
- EXPECT_EQ(79 * GetInstructionSetPointerSize(kRuntimeISA), sizeof(QuickEntryPoints));
+ EXPECT_EQ(78 * GetInstructionSetPointerSize(kRuntimeISA), sizeof(QuickEntryPoints));
}
TEST_F(OatTest, OatHeaderIsValid) {