Files
llvm/test/Reduce/Inputs/remove-metadata.py
T
David Blaikie 5fbb26ea5f llvm-reduce: Add pass to reduce Metadata
Patch by Diego Treviño!

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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@371562 91177308-0d34-0410-b5e6-96231b3b80d8
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)