diff options
author | Adam Nemet <anemet@apple.com> | 2017-01-27 06:39:08 +0000 |
---|---|---|
committer | Adam Nemet <anemet@apple.com> | 2017-01-27 06:39:08 +0000 |
commit | 07f1264b0b01004353fb9759fcf7cb0575c33a21 (patch) | |
tree | b45e120b66c288bf7aa19f74f34f7bc3d6c6f0eb /llvm/utils/opt-viewer/opt-viewer.py | |
parent | 41cf9b271cd7f66bddd351b938065518c38a872c (diff) | |
download | bcm5719-llvm-07f1264b0b01004353fb9759fcf7cb0575c33a21.tar.gz bcm5719-llvm-07f1264b0b01004353fb9759fcf7cb0575c33a21.zip |
[opt-viewer] Remove message from the key
This is causing problems because the rendering of the text will depend on
varying global state to show relative hotness or a link in the inlining
context.
llvm-svn: 293265
Diffstat (limited to 'llvm/utils/opt-viewer/opt-viewer.py')
-rwxr-xr-x | llvm/utils/opt-viewer/opt-viewer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/opt-viewer/opt-viewer.py b/llvm/utils/opt-viewer/opt-viewer.py index da7158a3ca3..7cacc24bc4a 100755 --- a/llvm/utils/opt-viewer/opt-viewer.py +++ b/llvm/utils/opt-viewer/opt-viewer.py @@ -123,7 +123,7 @@ class Remark(yaml.YAMLObject): @property def key(self): - return (self.__class__, self.Pass, self.Name, self.File, self.Line, self.Column, self.Function, self.message) + return (self.__class__, self.Pass, self.Name, self.File, self.Line, self.Column, self.Function) class Analysis(Remark): |