Fix lint error.

Change-Id: Ia0fa12f2208507b6bec0581edf4345025b877580
diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h
index 1d7a522..f906eb8 100644
--- a/compiler/optimizing/code_generator.h
+++ b/compiler/optimizing/code_generator.h
@@ -171,7 +171,7 @@
   static bool StoreNeedsWriteBarrier(Primitive::Type type, HInstruction* value) {
     if (kIsDebugBuild) {
       if (type == Primitive::kPrimNot && value->IsIntConstant()) {
-        CHECK(value->AsIntConstant()->GetValue() == 0);
+        CHECK_EQ(value->AsIntConstant()->GetValue(), 0);
       }
     }
     return type == Primitive::kPrimNot && !value->IsIntConstant();