forked from OSchip/llvm-project
[Testing] Python 3 requires `print` to use parens
llvm-svn: 372392
This commit is contained in:
parent
2d0cd6cac8
commit
4fff87d2ee
|
@ -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!
|
||||
|
|
Loading…
Reference in New Issue