| Index: src/optimizing-compile-dispatcher.cc
|
| diff --git a/src/optimizing-compile-dispatcher.cc b/src/optimizing-compile-dispatcher.cc
|
| index d2b837b25cd50a41e1c4ffd0d20721fb71e7bebe..a6ac143748fb92252cf456e6853b7dea5d67e6ba 100644
|
| --- a/src/optimizing-compile-dispatcher.cc
|
| +++ b/src/optimizing-compile-dispatcher.cc
|
| @@ -107,8 +107,7 @@ void OptimizingCompileDispatcher::CompileNext(CompilationJob* job) {
|
|
|
| // The function may have already been optimized by OSR. Simply continue.
|
| CompilationJob::Status status = job->OptimizeGraph();
|
| - USE(status); // Prevent an unused-variable error in release mode.
|
| - DCHECK(status != CompilationJob::FAILED);
|
| + USE(status); // Prevent an unused-variable error.
|
|
|
| // The function may have already been optimized by OSR. Simply continue.
|
| // Use a mutex to make sure that functions marked for install
|
|
|