mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 19:45:40 -04:00

Patch by Diego Treviño! Differential Revision: https://reviews.llvm.org/D66263 llvm-svn: 372282
16 lines
312 B
Python
Executable File
16 lines
312 B
Python
Executable File
import sys
|
|
|
|
InterestingBBs = 0
|
|
input = open(sys.argv[1], "r")
|
|
for line in input:
|
|
i = line.find(';')
|
|
if i >= 0:
|
|
line = line[:i]
|
|
if line.startswith("interesting") or "%interesting" in line:
|
|
InterestingBBs += 1
|
|
|
|
if InterestingBBs == 6:
|
|
sys.exit(0) # interesting!
|
|
|
|
sys.exit(1) # IR isn't interesting
|