| Index: src/execution.h
|
| diff --git a/src/execution.h b/src/execution.h
|
| index ee5d3a6f738f2e8336c13ca18b0f4ba5565cc287..642a76e6ed5bd66d6193e1439ffd4c9b406129d3 100644
|
| --- a/src/execution.h
|
| +++ b/src/execution.h
|
| @@ -86,12 +86,11 @@ class StackGuard final {
|
|
|
| #define INTERRUPT_LIST(V) \
|
| V(DEBUGBREAK, DebugBreak, 0) \
|
| - V(DEBUGCOMMAND, DebugCommand, 1) \
|
| - V(TERMINATE_EXECUTION, TerminateExecution, 2) \
|
| - V(GC_REQUEST, GC, 3) \
|
| - V(INSTALL_CODE, InstallCode, 4) \
|
| - V(API_INTERRUPT, ApiInterrupt, 5) \
|
| - V(DEOPT_MARKED_ALLOCATION_SITES, DeoptMarkedAllocationSites, 6)
|
| + V(TERMINATE_EXECUTION, TerminateExecution, 1) \
|
| + V(GC_REQUEST, GC, 2) \
|
| + V(INSTALL_CODE, InstallCode, 3) \
|
| + V(API_INTERRUPT, ApiInterrupt, 4) \
|
| + V(DEOPT_MARKED_ALLOCATION_SITES, DeoptMarkedAllocationSites, 5)
|
|
|
| #define V(NAME, Name, id) \
|
| inline bool Check##Name() { return CheckInterrupt(NAME); } \
|
|
|