diff options
Diffstat (limited to 'deps/v8/test/cctest/compiler/test-instruction.cc')
-rw-r--r-- | deps/v8/test/cctest/compiler/test-instruction.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/deps/v8/test/cctest/compiler/test-instruction.cc b/deps/v8/test/cctest/compiler/test-instruction.cc index 53562953ee..4de3373dad 100644 --- a/deps/v8/test/cctest/compiler/test-instruction.cc +++ b/deps/v8/test/cctest/compiler/test-instruction.cc @@ -2,9 +2,6 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -// TODO(jochen): Remove this after the setting is turned on globally. -#define V8_IMMINENT_DEPRECATION_WARNINGS - #include "src/compiler/code-generator.h" #include "src/compiler/common-operator.h" #include "src/compiler/graph.h" @@ -46,7 +43,7 @@ class InstructionTester : public HandleAndZoneScope { if (schedule.rpo_order()->size() == 0) { // Compute the RPO order. Scheduler::ComputeSpecialRPO(main_zone(), &schedule); - DCHECK(schedule.rpo_order()->size() > 0); + CHECK_NE(0u, schedule.rpo_order()->size()); } InstructionBlocks* instruction_blocks = TestInstrSeq::InstructionBlocksFor(main_zone(), &schedule); |