forked from OSchip/llvm-project
[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
This commit is contained in:
parent
41cf9b271c
commit
07f1264b0b
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue