From 4fff87d2eea1fb8e835df9e6dbd8372bc5c313be Mon Sep 17 00:00:00 2001 From: David Zarzycki Date: Fri, 20 Sep 2019 13:52:47 +0000 Subject: [PATCH] [Testing] Python 3 requires `print` to use parens llvm-svn: 372392 --- llvm/test/Reduce/Inputs/remove-instructions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/Reduce/Inputs/remove-instructions.py b/llvm/test/Reduce/Inputs/remove-instructions.py index df4d85dd..9717c73 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! -- 2.7.4