diff options
author | David Zarzycki <dave@znu.io> | 2019-09-20 13:52:47 +0000 |
---|---|---|
committer | David Zarzycki <dave@znu.io> | 2019-09-20 13:52:47 +0000 |
commit | 4fff87d2eea1fb8e835df9e6dbd8372bc5c313be (patch) | |
tree | 2449d0b83272c4eb085745b788ca61443587ba7c | |
parent | 2d0cd6cac8403c22b29bcc7874649ff789c6c9b0 (diff) | |
download | bcm5719-llvm-4fff87d2eea1fb8e835df9e6dbd8372bc5c313be.tar.gz bcm5719-llvm-4fff87d2eea1fb8e835df9e6dbd8372bc5c313be.zip |
[Testing] Python 3 requires `print` to use parens
llvm-svn: 372392
-rwxr-xr-x | llvm/test/Reduce/Inputs/remove-instructions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Reduce/Inputs/remove-instructions.py b/llvm/test/Reduce/Inputs/remove-instructions.py index df4d85dd4f4..9717c73b01a 100755 --- a/llvm/test/Reduce/Inputs/remove-instructions.py +++ b/llvm/test/Reduce/Inputs/remove-instructions.py @@ -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! |