Skip to content

Commit

Permalink
Unbreak demangling on mac
Browse files Browse the repository at this point in the history
Review URL: http://codereview.chromium.org/155659

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20953 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
dank@chromium.org committed Jul 17, 2009
1 parent e33fcd8 commit d72bd13
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/valgrind/memcheck_analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,10 @@ def __str__(self):
output = self._kind + "\n"
for backtrace in self._backtraces:
output += backtrace[0] + "\n"
filter = subprocess.Popen("c++filt", stdin=subprocess.PIPE,
filter = subprocess.Popen("c++filt -n", stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
shell=True,
close_fds=True)
buf = ""
for frame in backtrace[1]:
Expand Down

0 comments on commit d72bd13

Please sign in to comment.