diff options
Diffstat (limited to 'llvm/test/BugPoint/compile-custom.ll.py')
-rwxr-xr-x | llvm/test/BugPoint/compile-custom.ll.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/BugPoint/compile-custom.ll.py b/llvm/test/BugPoint/compile-custom.ll.py index 32093557d69..4b9b30caadc 100755 --- a/llvm/test/BugPoint/compile-custom.ll.py +++ b/llvm/test/BugPoint/compile-custom.ll.py @@ -5,6 +5,6 @@ import sys # Currently any print-out from the custom tool is interpreted as a crash # (i.e. test is still interesting) -print "Error: " + ' '.join(sys.argv[1:]) +print("Error: " + ' '.join(sys.argv[1:])) sys.exit(1) |