diff options
author | Mathieu Chartier <mathieuc@google.com> | 2014-11-21 16:51:29 -0800 |
---|---|---|
committer | Mathieu Chartier <mathieuc@google.com> | 2014-11-24 10:44:33 -0800 |
commit | 957ca1cd025104fccb0b08928f955f9bdb4ab91c (patch) | |
tree | 913ceffe992bb25898ac79977b47dc2af8b3354b /compiler/oat_test.cc | |
parent | 4d3ed1a6f34bd31ed30faaca0433cf2a4b19bb7b (diff) | |
download | art-957ca1cd025104fccb0b08928f955f9bdb4ab91c.tar.gz art-957ca1cd025104fccb0b08928f955f9bdb4ab91c.tar.bz2 art-957ca1cd025104fccb0b08928f955f9bdb4ab91c.zip |
Delete ArtMethod gc_map_ field
Moved the gc_map field from OatMethod to OatQuickMethodHeader.
Deleted the ArtMethod gc_map_ field.
Bug: 17643507
Change-Id: Ifa0470c3e4c2f8a319744464d94c6838b76b3d48
(cherry picked from commit 807140048f82a2b87ee5bcf337f23b6a3d1d5269)
Diffstat (limited to 'compiler/oat_test.cc')
-rw-r--r-- | compiler/oat_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/oat_test.cc b/compiler/oat_test.cc index ce4ed6d22..9fe98e366 100644 --- a/compiler/oat_test.cc +++ b/compiler/oat_test.cc @@ -190,8 +190,8 @@ TEST_F(OatTest, OatHeaderSizeCheck) { // If this test is failing and you have to update these constants, // it is time to update OatHeader::kOatVersion EXPECT_EQ(84U, sizeof(OatHeader)); - EXPECT_EQ(8U, sizeof(OatMethodOffsets)); - EXPECT_EQ(24U, sizeof(OatQuickMethodHeader)); + EXPECT_EQ(4U, sizeof(OatMethodOffsets)); + EXPECT_EQ(28U, sizeof(OatQuickMethodHeader)); EXPECT_EQ(91 * GetInstructionSetPointerSize(kRuntimeISA), sizeof(QuickEntryPoints)); } |