[llvm] r293265 - [opt-viewer] Remove message from the key
Adam Nemet via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 26 22:39:08 PST 2017
Author: anemet
Date: Fri Jan 27 00:39:08 2017
New Revision: 293265
URL: http://llvm.org/viewvc/llvm-project?rev=293265&view=rev
Log:
[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.
Modified:
llvm/trunk/utils/opt-viewer/opt-viewer.py
Modified: llvm/trunk/utils/opt-viewer/opt-viewer.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/opt-viewer/opt-viewer.py?rev=293265&r1=293264&r2=293265&view=diff
==============================================================================
--- llvm/trunk/utils/opt-viewer/opt-viewer.py (original)
+++ llvm/trunk/utils/opt-viewer/opt-viewer.py Fri Jan 27 00:39:08 2017
@@ -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):
More information about the llvm-commits
mailing list