From 251014ce7913d26667d7837eb47290b276a27021 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@372392 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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! -- 2.40.0