[opt-viewer] Avoid division by zero

llvm-svn: 286172
This commit is contained in:
Adam Nemet 2016-11-07 23:12:13 +00:00
parent 92e01ee90b
commit 15e59ab75a
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ def demangle(name):
return p.stdout.readline().rstrip()
class Remark(yaml.YAMLObject):
max_hotness = 0
max_hotness = 1
@property
def File(self):