mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-18 13:16:24 -04:00
c980605691
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@371143 91177308-0d34-0410-b5e6-96231b3b80d8
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
|