| Index: src/builtins.h
|
| diff --git a/src/builtins.h b/src/builtins.h
|
| index 13e3a90e1922add7355acc239329c01e3f24ee19..b526e785812ca13c6f8b5f90f9e57b6346f81f13 100644
|
| --- a/src/builtins.h
|
| +++ b/src/builtins.h
|
| @@ -139,15 +139,11 @@ enum BuiltinExtraArguments {
|
| V(StoreIC_Normal, STORE_IC)
|
|
|
| // Define list of builtins used by the debugger implemented in assembly.
|
| -#define BUILTIN_LIST_DEBUG_A(V) \
|
| - V(Return_DebugBreak, BUILTIN, DEBUG_STUB, \
|
| - DEBUG_BREAK) \
|
| - V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, \
|
| - DEBUG_BREAK) \
|
| - V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, \
|
| - DEBUG_BREAK) \
|
| - V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, \
|
| - DEBUG_BREAK)
|
| +#define BUILTIN_LIST_DEBUG_A(V) \
|
| + V(Return_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \
|
| + V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \
|
| + V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) \
|
| + V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState)
|
|
|
| // Define list of builtins implemented in JavaScript.
|
| #define BUILTINS_LIST_JS(V) \
|
|
|