mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-01 16:16:06 +00:00

This reverts commit 69549de865550e54983ed8d00009920184de47ff. The change in D135237 can lead to verification failures like `scope must have two or three operands`. The ongoing work in D132077 does something similar without these failures, so lets wait for that to land and revert this patch. Reviewed By: aeubanks Differential Revision: https://reviews.llvm.org/D135395
9 lines
120 B
Python
Executable File
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)
|