summaryrefslogtreecommitdiffstats
path: root/runtime/mirror
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-12-17 18:43:01 -0800
committerAndreas Gampe <agampe@google.com>2014-12-29 10:52:02 -0800
commit1cc7dbabd03e0a6c09d68161417a21bd6f9df371 (patch)
tree8557bdff971e366909351af95a7c8ead82792986 /runtime/mirror
parent5e0a9849d4e353c3726095b65ab07cefce40a636 (diff)
downloadart-1cc7dbabd03e0a6c09d68161417a21bd6f9df371.zip
art-1cc7dbabd03e0a6c09d68161417a21bd6f9df371.tar.gz
art-1cc7dbabd03e0a6c09d68161417a21bd6f9df371.tar.bz2
ART: Reorder entrypoint argument order
Shuffle the ArtMethod* referrer backwards for easier removal. Clean up ARM & MIPS assembly code. Change some macros to make future changes easier. Change-Id: Ie2862b68bd6e519438e83eecd9e1611df51d7945
Diffstat (limited to 'runtime/mirror')
-rw-r--r--runtime/mirror/object_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/mirror/object_test.cc b/runtime/mirror/object_test.cc
index ae5f60a..f9c00ce 100644
--- a/runtime/mirror/object_test.cc
+++ b/runtime/mirror/object_test.cc
@@ -313,7 +313,7 @@ TEST_F(ObjectTest, CheckAndAllocArrayFromCode) {
java_lang_dex_file_->GetIndexForStringId(*string_id));
ASSERT_TRUE(type_id != NULL);
uint32_t type_idx = java_lang_dex_file_->GetIndexForTypeId(*type_id);
- Object* array = CheckAndAllocArrayFromCodeInstrumented(type_idx, sort, 3, Thread::Current(), false,
+ Object* array = CheckAndAllocArrayFromCodeInstrumented(type_idx, 3, sort, Thread::Current(), false,
Runtime::Current()->GetHeap()->GetCurrentAllocator());
EXPECT_TRUE(array->IsArrayInstance());
EXPECT_EQ(3, array->AsArray()->GetLength());