mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 03:55:48 -04:00
10 lines
144 B
Python
Executable File
10 lines
144 B
Python
Executable File
|
|
import sys
|
|
|
|
input = open(sys.argv[1], "r")
|
|
for line in input:
|
|
if "@interesting" in line:
|
|
sys.exit(0)
|
|
|
|
sys.exit(1) # IR isn't interesting
|