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

Unified Diff: tools/binary_size/libsupersize/linker_map_parser.py

Issue 2860003002: supersize: Remove path attribution for symbol gaps (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | tools/binary_size/libsupersize/testdata/Archive.golden » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/binary_size/libsupersize/linker_map_parser.py
diff --git a/tools/binary_size/libsupersize/linker_map_parser.py b/tools/binary_size/libsupersize/linker_map_parser.py
index 9bdf9b2b096e3d2cea5dc9c6ebfb31268ac8ac43..f239013d707922a95cc1f63625a37f555ed03de6 100644
--- a/tools/binary_size/libsupersize/linker_map_parser.py
+++ b/tools/binary_size/libsupersize/linker_map_parser.py
@@ -218,8 +218,7 @@ class MapFileParser(object):
sym = models.Symbol(
section_name, 0,
address=address,
- name='** symbol gap %d' % symbol_gap_count,
- object_path=path)
+ name='** symbol gap %d' % symbol_gap_count)
symbol_gap_count += 1
syms.append(sym)
« no previous file with comments | « no previous file | tools/binary_size/libsupersize/testdata/Archive.golden » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698