Skip to content

Commit

Permalink
Merge pull request #73 from jeanbaptistelab/master
Browse files Browse the repository at this point in the history
Fix for #39
  • Loading branch information
noahp authored Mar 2, 2023
2 parents 913b32f + c2907ce commit b0add53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion puncover/collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def parse_size_line(self, line):
file = None
line = None

types = {"T": TYPE_FUNCTION, "D": TYPE_VARIABLE, "B": TYPE_VARIABLE, "R": TYPE_VARIABLE}
types = {"A": TYPE_FUNCTION, "T": TYPE_FUNCTION, "D": TYPE_VARIABLE, "B": TYPE_VARIABLE, "R": TYPE_VARIABLE}

self.add_symbol(name, address=addr, size=size, file=file, line=line, type = types.get(type.upper(), None))

Expand Down

0 comments on commit b0add53

Please sign in to comment.