diff options
author | Jeff Hao <jeffhao@google.com> | 2013-10-23 16:24:40 -0700 |
---|---|---|
committer | Jeff Hao <jeffhao@google.com> | 2013-10-29 12:01:28 -0700 |
commit | 88474b416eb257078e590bf9bc7957cee604a186 (patch) | |
tree | 7c59aa370bec9b0f2d37cb7a96d3b2effb3d92ce /compiler/oat_test.cc | |
parent | 9780099e445884d8bc9444c8c1261b02d80a26c7 (diff) | |
download | art-88474b416eb257078e590bf9bc7957cee604a186.zip art-88474b416eb257078e590bf9bc7957cee604a186.tar.gz art-88474b416eb257078e590bf9bc7957cee604a186.tar.bz2 |
Implement Interface Method Tables (IMT).
Change-Id: Idf7fe85e1293453a8ad862ff2380dcd5db4e3a39
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 af86743..815bca5 100644 --- a/compiler/oat_test.cc +++ b/compiler/oat_test.cc @@ -149,7 +149,7 @@ TEST_F(OatTest, WriteRead) { 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(64U, sizeof(OatHeader)); + EXPECT_EQ(72U, sizeof(OatHeader)); EXPECT_EQ(28U, sizeof(OatMethodOffsets)); } |