From 900f6eb15db5215deeea23e4e087b553b4f696f7 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Mon, 17 Nov 2014 09:51:16 +0000 Subject: Fix lint error. Change-Id: Ia0fa12f2208507b6bec0581edf4345025b877580 --- compiler/optimizing/code_generator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/optimizing/code_generator.h') diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h index 1d7a5222bc..f906eb8c05 100644 --- a/compiler/optimizing/code_generator.h +++ b/compiler/optimizing/code_generator.h @@ -171,7 +171,7 @@ class CodeGenerator : public ArenaObject { 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(); -- cgit v1.2.3-59-g8ed1b