Fixes to verifier and slowpaths for cts invoke tests.

Instructions are never rewritten, so that has been removed from the
verifier. Also, the slowpath now checks for access errors when it
can't properly resolve a method.

Change-Id: Ie38eacec8eb092ba23502471a0b27ca8ce38fe68
diff --git a/src/common_test.h b/src/common_test.h
index 41dc76c..4424d91 100644
--- a/src/common_test.h
+++ b/src/common_test.h
@@ -346,10 +346,12 @@
     class_linker_ = runtime_->GetClassLinker();
 
     InstructionSet instruction_set = kNone;
-#if defined(__i386__)
-    instruction_set = kX86;
-#elif defined(__arm__)
+#if defined(__arm__)
     instruction_set = kThumb2;
+#elif defined(__mips__)
+    instruction_set = kMips;
+#elif defined(__i386__)
+    instruction_set = kX86;
 #endif
     runtime_->SetJniDlsymLookupStub(Compiler::CreateJniDlsymLookupStub(instruction_set));
     runtime_->SetAbstractMethodErrorStubArray(Compiler::CreateAbstractMethodErrorStub(instruction_set));