summaryrefslogtreecommitdiffstats
path: root/llvm/test/Reduce/Inputs/remove-instructions.py
blob: 9717c73b01aa73dff07fa56096304f8702dcab40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import sys

InterestingInstructions = 0

input = open(sys.argv[1], "r")
for line in input:
  i = line.find(';')
  if i >= 0:
    line = line[:i]
  if "%interesting" in line:
    InterestingInstructions += 1
  print(InterestingInstructions)

if InterestingInstructions == 5:
  sys.exit(0) # interesting!

sys.exit(1)
OpenPOWER on IntegriCloud