From 28838dc0793e82df2cb6717d061c6e47bc82f2f1 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 --- test/Reduce/Inputs/remove-instructions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Reduce/Inputs/remove-instructions.py b/test/Reduce/Inputs/remove-instructions.py index df4d85dd4f4..9717c73b01a 100755 --- a/test/Reduce/Inputs/remove-instructions.py +++ b/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!