| Index: src/isolate.h
|
| diff --git a/src/isolate.h b/src/isolate.h
|
| index bc78c6ddbb305204ff8e34cb194ae97f3f93d35e..fa3cb60bda53771011e45478eef73b316b5935b8 100644
|
| --- a/src/isolate.h
|
| +++ b/src/isolate.h
|
| @@ -595,7 +595,7 @@ class Isolate {
|
| return thread_local_top_.scheduled_exception_;
|
| }
|
| bool has_scheduled_exception() {
|
| - return !thread_local_top_.scheduled_exception_->IsTheHole();
|
| + return thread_local_top_.scheduled_exception_ != heap_.the_hole_value();
|
| }
|
| void clear_scheduled_exception() {
|
| thread_local_top_.scheduled_exception_ = heap_.the_hole_value();
|
|
|