3 InterestingArgumentPresent
= False
4 FunctionCallPresent
= False
6 input = open(sys
.argv
[1], "r")
8 if "%interesting" in line
:
9 InterestingArgumentPresent
= True
10 if "call void @interesting" in line
:
11 FunctionCallPresent
= True
13 if InterestingArgumentPresent
and FunctionCallPresent
:
14 sys
.exit(0) # Interesting!