[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:
Adam Nemet 2017-01-27 06:39:08 +00:00
parent 41cf9b271c
commit 07f1264b0b
1 changed files with 1 additions and 1 deletions

View File

@ -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):