From 43c86422e210a3883729ab90997711e79f26bccc Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Tue, 18 Mar 2014 11:58:24 +0000 Subject: Fix lint error, and Makefile that could be confused with local files. Change-Id: I780cc0d6593eadd6f82e1126d7ad445894af666c --- compiler/optimizing/nodes.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/optimizing') diff --git a/compiler/optimizing/nodes.cc b/compiler/optimizing/nodes.cc index b8b4a3b0fe..498deba2b4 100644 --- a/compiler/optimizing/nodes.cc +++ b/compiler/optimizing/nodes.cc @@ -122,7 +122,7 @@ void HGraph::VisitBlockForDominatorTree(HBasicBlock* block, void HBasicBlock::AddInstruction(HInstruction* instruction) { DCHECK(instruction->GetBlock() == nullptr); - DCHECK(instruction->GetId() == -1); + DCHECK_EQ(instruction->GetId(), -1); instruction->SetBlock(this); instruction->SetId(GetGraph()->GetNextInstructionId()); if (first_instruction_ == nullptr) { -- cgit v1.2.3-59-g8ed1b