File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 27
27
28
28
# Reset this number to 0 on major V8 upgrades.
29
29
# Increment by one for each non-official patch applied to deps/v8.
30
- 'v8_embedder_string' : '-node.12 ' ,
30
+ 'v8_embedder_string' : '-node.13 ' ,
31
31
32
32
# Enable disassembler for `--print-code` v8 options
33
33
'v8_enable_disassembler' : 1 ,
Original file line number Diff line number Diff line change @@ -10255,6 +10255,10 @@ const char* CodeEvent::GetCodeEventTypeName(CodeEventType code_event_type) {
10255
10255
CODE_EVENTS_LIST(V)
10256
10256
#undef V
10257
10257
}
10258
+ // The execution should never pass here
10259
+ UNREACHABLE();
10260
+ // NOTE(mmarchini): Workaround to fix a compiler failure on GCC 4.9
10261
+ return "Unknown";
10258
10262
}
10259
10263
10260
10264
CodeEventHandler::CodeEventHandler(Isolate* isolate) {
Original file line number Diff line number Diff line change @@ -59,6 +59,10 @@ static v8::CodeEventType GetCodeEventTypeForTag(
59
59
TAGS_LIST (V)
60
60
#undef V
61
61
}
62
+ // The execution should never pass here
63
+ UNREACHABLE ();
64
+ // NOTE(mmarchini): Workaround to fix a compiler failure on GCC 4.9
65
+ return v8::CodeEventType::kUnknownType ;
62
66
}
63
67
#define CALL_CODE_EVENT_HANDLER (Call ) \
64
68
if (listener_) { \
You can’t perform that action at this time.
0 commit comments