1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[Testing] Python 3 requires print to use parens

llvm-svn: 372392
This commit is contained in:
David Zarzycki 2019-09-20 13:52:47 +00:00
parent cb2986b9cc
commit 28838dc079

View File

@ -9,7 +9,7 @@ for line in input:
line = line[:i]
if "%interesting" in line:
InterestingInstructions += 1
print InterestingInstructions
print(InterestingInstructions)
if InterestingInstructions == 5:
sys.exit(0) # interesting!