Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Unified Diff: tools/mac-nm

Issue 2696903002: [profiler] Graphical front-end for tick processor. (Closed)
Patch Set: Fix test Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/codemap.js ('k') | tools/profile.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/mac-nm
diff --git a/tools/mac-nm b/tools/mac-nm
index 07efb07bae8eb5cd276340f8265e7c3a87348d0e..cc5f6c742a8ce035459ca439cfee43c48894d944 100755
--- a/tools/mac-nm
+++ b/tools/mac-nm
@@ -14,5 +14,6 @@
if [ "`which c++filt`" == "" ]; then
nm "$@"
else
- nm "$@" | c++filt -p -i
+ nm "$@" | sed -n "s/\([0-9a-fA-F]\{8,16\}\) [iItT] \(.*\)/\\1 \\2/p"\
+ | c++filt -p -i
fi
« no previous file with comments | « tools/codemap.js ('k') | tools/profile.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698