summaryrefslogtreecommitdiffstats
path: root/llvm/test/Reduce/Inputs/remove-bbs.py
blob: 71f099daaba0648cc6da79850a64ded683623d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
OpenPOWER on IntegriCloud