Merge "Add wide setter test with preceding parameters as int."
diff --git a/compiler/dex/quick/arm/call_arm.cc b/compiler/dex/quick/arm/call_arm.cc
index 22466f0..fdc609a 100644
--- a/compiler/dex/quick/arm/call_arm.cc
+++ b/compiler/dex/quick/arm/call_arm.cc
@@ -130,7 +130,7 @@
 MIR* ArmMir2Lir::SpecialIGet(BasicBlock** bb, MIR* mir, const InlineMethod& special) {
   // FastInstance() already checked by DexFileMethodInliner.
   const InlineIGetIPutData& data = special.d.ifield_data;
-  if (!data.method_is_static || data.object_arg != 0) {
+  if (data.method_is_static || data.object_arg != 0) {
     return NULL;  // The object is not "this" and has to be null-checked.
   }
 
@@ -160,7 +160,7 @@
 MIR* ArmMir2Lir::SpecialIPut(BasicBlock** bb, MIR* mir, const InlineMethod& special) {
   // FastInstance() already checked by DexFileMethodInliner.
   const InlineIGetIPutData& data = special.d.ifield_data;
-  if (!data.method_is_static || data.object_arg != 0) {
+  if (data.method_is_static || data.object_arg != 0) {
     return NULL;  // The object is not "this" and has to be null-checked.
   }