| Index: test/cctest/compiler/test-run-bytecode-graph-builder.cc | 
| diff --git a/test/cctest/compiler/test-run-bytecode-graph-builder.cc b/test/cctest/compiler/test-run-bytecode-graph-builder.cc | 
| index 91bed3147ab293fb21706836a6dacad32fded116..942f516db105816debfcdd9baa81ec15a59f347a 100644 | 
| --- a/test/cctest/compiler/test-run-bytecode-graph-builder.cc | 
| +++ b/test/cctest/compiler/test-run-bytecode-graph-builder.cc | 
| @@ -176,8 +176,8 @@ struct ExpectedSnippet { | 
| inline T return_value() const { return return_value_and_parameters[0]; } | 
|  | 
| inline T parameter(int i) const { | 
| -    DCHECK_GE(i, 0); | 
| -    DCHECK_LT(i, N); | 
| +    CHECK_GE(i, 0); | 
| +    CHECK_LT(i, N); | 
| return return_value_and_parameters[1 + i]; | 
| } | 
| }; | 
|  |