Reviewers: Jakob,

Description:
Best effort for C stack traces with unrecognised symbol format

[email protected]
BUG=320958

Please review this at https://codereview.chromium.org/83573003/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+1, -1 lines):
  M src/checks.cc


Index: src/checks.cc
diff --git a/src/checks.cc b/src/checks.cc
index a4514bf965094891cfb371ea46c05a6b1d26f05d..a1e450d0a71f012394a930422381b1907d518662 100644
--- a/src/checks.cc
+++ b/src/checks.cc
@@ -59,7 +59,7 @@ static V8_INLINE void DumpBacktrace() {
         i::OS::PrintError("%s\n", demangled != NULL ? demangled : mangled);
         free(demangled);
       } else {
-        i::OS::PrintError("??\n");
+        i::OS::PrintError("%s\n", symbols[i]);
       }
     }
   }


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to