forked from OSchip/llvm-project
[opt-viewer] Remove unnecessary call to demangle
llvm-svn: 283898
This commit is contained in:
parent
e437504b30
commit
3996caa1a6
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue