[opt-viewer] Remove unnecessary call to demangle

llvm-svn: 283898
This commit is contained in:
Adam Nemet 2016-10-11 16:20:40 +00:00
parent ee4aced190
commit 1b02274c11

View File

@ -60,7 +60,7 @@ class Remark(yaml.YAMLObject):
# 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):