diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-11-17 09:51:16 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-11-17 09:51:16 +0000 |
commit | 900f6eb15db5215deeea23e4e087b553b4f696f7 (patch) | |
tree | ee2a824d581098147b5410539b294473f3b55c82 /compiler/optimizing/code_generator.h | |
parent | 6d541424eb0cb82ec3c2262d9c27d5fd97530cb8 (diff) |
Fix lint error.
Change-Id: Ia0fa12f2208507b6bec0581edf4345025b877580
Diffstat (limited to 'compiler/optimizing/code_generator.h')
-rw-r--r-- | compiler/optimizing/code_generator.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<kArenaAllocMisc> { 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(); |