| Index: src/assembler.cc
|
| ===================================================================
|
| --- src/assembler.cc (revision 3808)
|
| +++ src/assembler.cc (working copy)
|
| @@ -430,6 +430,11 @@
|
| return "code target (js construct call)";
|
| case RelocInfo::CODE_TARGET_CONTEXT:
|
| return "code target (context)";
|
| + case RelocInfo::DEBUG_BREAK:
|
| +#ifndef ENABLE_DEBUGGER_SUPPORT
|
| + UNREACHABLE();
|
| +#endif
|
| + return "debug break";
|
| case RelocInfo::CODE_TARGET:
|
| return "code target";
|
| case RelocInfo::RUNTIME_ENTRY:
|
| @@ -485,6 +490,11 @@
|
| case EMBEDDED_OBJECT:
|
| Object::VerifyPointer(target_object());
|
| break;
|
| + case DEBUG_BREAK:
|
| +#ifndef ENABLE_DEBUGGER_SUPPORT
|
| + UNREACHABLE();
|
| + break;
|
| +#endif
|
| case CONSTRUCT_CALL:
|
| case CODE_TARGET_CONTEXT:
|
| case CODE_TARGET: {
|
|
|