diff options
author | 2016-09-14 12:49:57 +0100 | |
---|---|---|
committer | 2016-09-14 12:55:09 +0100 | |
commit | 05846475c8d48ce191dcd333c76d5ccc17aea9dd (patch) | |
tree | bfbcbba324eda45fae27b31ce0ce589c5f472474 /compiler/oat_test.cc | |
parent | e305eaf2c08a203e3e046c3a8608b90b9dc5a080 (diff) |
Remove ThrowNoSuchMethod entrypoint.
Run ART test suite on host and Nexus 6.
Bug: 31464666
Change-Id: I5aa737726031adae0b132f759cf802a93d581a7f
Diffstat (limited to 'compiler/oat_test.cc')
-rw-r--r-- | compiler/oat_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/oat_test.cc b/compiler/oat_test.cc index 78e9ca91b7..24d102d4c0 100644 --- a/compiler/oat_test.cc +++ b/compiler/oat_test.cc @@ -453,7 +453,7 @@ TEST_F(OatTest, OatHeaderSizeCheck) { EXPECT_EQ(72U, sizeof(OatHeader)); EXPECT_EQ(4U, sizeof(OatMethodOffsets)); EXPECT_EQ(20U, sizeof(OatQuickMethodHeader)); - EXPECT_EQ(164 * static_cast<size_t>(GetInstructionSetPointerSize(kRuntimeISA)), + EXPECT_EQ(163 * static_cast<size_t>(GetInstructionSetPointerSize(kRuntimeISA)), sizeof(QuickEntryPoints)); } |