repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git]
/
llvm
/
test
/
tools
/
llvm-reduce
/
Inputs
/
remove-metadata.py
blob
37af33314853cdf77cb9255ecce821cbbdf5bcb0
1
import
sys
2
3
input
=
open
(
sys
.
argv
[
1
],
"r"
)
4
for
line
in
input
:
5
if
"!interesting"
in
line
:
6
sys
.
exit
(
0
)
7
8
sys
.
exit
(
1
)