summaryrefslogtreecommitdiffstats
path: root/llvm/test/Reduce/Inputs/remove-global-vars.py
blob: 1ae8b0e6e76cad164d4f1fcefba048a89e7b7851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python

import sys

InterestingVar = 0

input = open(sys.argv[1], "r")
for line in input:
  i = line.find(';')
  if i >= 0:
    line = line[:i]
  if line.startswith("@interesting = global") or "@interesting" in line:
    InterestingVar += 1

if InterestingVar == 4:
  sys.exit(0) # interesting!

sys.exit(1)
OpenPOWER on IntegriCloud