Skip to content

Commit

Permalink
[opt-viewer] Remove unnecessary call to demangle
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@283898 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
anemet committed Oct 11, 2016
1 parent 2b64f4d commit f4b8d7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/opt-viewer/opt-viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def message(self):
# Args is a list of mappings (dictionaries) with each dictionary with
# exactly one key-value pair.
values = [self.getArgString(mapping.items()[0]) for mapping in self.Args]
return demangle("".join(values))
return "".join(values)

@property
def RelativeHotness(self):
Expand Down

0 comments on commit f4b8d7b

Please sign in to comment.