bolt/deps/llvm-18.1.8/llvm/test/tools/llvm-reduce/Inputs/remove-instructions.py

18 lines
335 B
Python
Raw Normal View History

2025-02-14 19:21:04 +01:00
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)