1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00
llvm-mirror/test/Reduce/Inputs/remove-metadata.py
David Blaikie 4e25fb2d4f llvm-reduce: Add pass to reduce Metadata
Patch by Diego Treviño!

Differential Revision: https://reviews.llvm.org/D65026

llvm-svn: 371562
2019-09-10 22:09:58 +00:00

9 lines
120 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)