From 58bdd18fb060979c22a1fd1a15c2efdcdd19c1c5 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Mon, 15 Sep 2014 14:07:15 +0100 Subject: Add tests for IF_EQZ for suspend checks. Also remove leftover debugging. Change-Id: If7d3119bc03b9ad6c1228fbde781162d0e62753f --- compiler/optimizing/builder.cc | 1 - 1 file changed, 1 deletion(-) (limited to 'compiler/optimizing/builder.cc') diff --git a/compiler/optimizing/builder.cc b/compiler/optimizing/builder.cc index 71e71f79d4..cbdaec63de 100644 --- a/compiler/optimizing/builder.cc +++ b/compiler/optimizing/builder.cc @@ -164,7 +164,6 @@ void HGraphBuilder::If_21t(const Instruction& instruction, uint32_t dex_offset) current_block_->AddInstruction(comparison); HInstruction* ifinst = new (arena_) HIf(comparison); current_block_->AddInstruction(ifinst); - fprintf(stderr, "%d and %d\n", dex_offset, target_offset); HBasicBlock* target = FindBlockStartingAt(dex_offset + target_offset); DCHECK(target != nullptr); current_block_->AddSuccessor(target); -- cgit v1.2.3-59-g8ed1b