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 29
29
30
30
# Reset this number to 0 on major V8 upgrades.
31
31
# Increment by one for each non-official patch applied to deps/v8.
32
- 'v8_embedder_string' : '-node.5 ' ,
32
+ 'v8_embedder_string' : '-node.6 ' ,
33
33
34
34
# Enable disassembler for `--print-code` v8 options
35
35
'v8_enable_disassembler' : 1 ,
Original file line number Diff line number Diff line change @@ -10148,6 +10148,10 @@ const char* CodeEvent::GetCodeEventTypeName(CodeEventType code_event_type) {
10148
10148
CODE_EVENTS_LIST (V)
10149
10149
#undef V
10150
10150
}
10151
+ // The execution should never pass here
10152
+ UNREACHABLE ();
10153
+ // NOTE(mmarchini): Workaround to fix a compiler failure on GCC 4.9
10154
+ return " Unknown" ;
10151
10155
}
10152
10156
10153
10157
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