Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 29659
b: refs/heads/master
c: 5184973
h: refs/heads/master
i:
  29657: acf0a77
  29655: 1eba007
v: v3
  • Loading branch information
Rob Landley authored and Linus Torvalds committed Jun 25, 2006
1 parent b3088a1 commit b6cee4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f867d2a2e5f3f0ce6356f452cc27b70d577de7c7
refs/heads/master: 51849738cf3af4d2c43a657e811a89e7f69eccc2
3 changes: 2 additions & 1 deletion trunk/scripts/bloat-o-meter
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ def getsizes(file):
for l in os.popen("nm --size-sort " + file).readlines():
size, type, name = l[:-1].split()
if type in "tTdDbB":
sym[name] = int(size, 16)
if "." in name: name = "static." + name.split(".")[0]
sym[name] = sym.get(name, 0) + int(size, 16)
return sym

old = getsizes(sys.argv[1])
Expand Down

0 comments on commit b6cee4d

Please sign in to comment.