| Index: src/checks.cc
|
| diff --git a/src/checks.cc b/src/checks.cc
|
| index 320fd6b5ea5b0df2446ad28d665f67b16e698c3c..a6405ecdec01a47a6c018d3cd9c46e0d2d9f6cff 100644
|
| --- a/src/checks.cc
|
| +++ b/src/checks.cc
|
| @@ -46,7 +46,8 @@ extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) {
|
| va_start(arguments, format);
|
| i::OS::VPrintError(format, arguments);
|
| va_end(arguments);
|
| - i::OS::PrintError("\n#\n\n");
|
| + i::OS::PrintError("\n#\n");
|
| + i::OS::DumpBacktrace();
|
| }
|
| // First two times we may try to print a stack dump.
|
| if (fatal_error_handler_nesting_depth < 3) {
|
|
|