diff options
author | Mingyao Yang <mingyao@google.com> | 2015-03-23 23:56:36 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-03-23 23:56:37 +0000 |
commit | 27a40aac557a0ee123471a99dc56fe91b50f2351 (patch) | |
tree | fb7fcf5673e3d672b68e7a96aceb3a50b191b467 /runtime/entrypoints_order_test.cc | |
parent | 075a6090b07ecfe7394fb65d39567596e0b1e3d3 (diff) | |
parent | e295e6ec5beaea31be5d7d3c996cd8cfa2053129 (diff) | |
download | art-27a40aac557a0ee123471a99dc56fe91b50f2351.tar.gz art-27a40aac557a0ee123471a99dc56fe91b50f2351.tar.bz2 art-27a40aac557a0ee123471a99dc56fe91b50f2351.zip |
Merge "Deoptimization-based bce."
Diffstat (limited to 'runtime/entrypoints_order_test.cc')
-rw-r--r-- | runtime/entrypoints_order_test.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/entrypoints_order_test.cc b/runtime/entrypoints_order_test.cc index 88209a3d3c..0664fa0881 100644 --- a/runtime/entrypoints_order_test.cc +++ b/runtime/entrypoints_order_test.cc @@ -265,7 +265,8 @@ class EntrypointsOrderTest : public CommonRuntimeTest { EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pThrowDivZero, pThrowNoSuchMethod, sizeof(void*)); EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pThrowNoSuchMethod, pThrowNullPointer, sizeof(void*)); EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pThrowNullPointer, pThrowStackOverflow, sizeof(void*)); - EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pThrowStackOverflow, pA64Load, sizeof(void*)); + EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pThrowStackOverflow, pDeoptimize, sizeof(void*)); + EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pDeoptimize, pA64Load, sizeof(void*)); EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pA64Load, pA64Store, sizeof(void*)); CHECKED(OFFSETOF_MEMBER(QuickEntryPoints, pA64Store) |