summaryrefslogtreecommitdiffstats
path: root/llvm/test/BugPoint
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-03-13 00:10:37 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-03-13 00:10:37 +0000
commit477a2f39cbaa7774743dd2847f54f730fa875fb5 (patch)
treec0b18c01657bc09e3ac32bf3eeb4c0797f21b0bc /llvm/test/BugPoint
parent07e7486128a40887f5b55d0f4c9b29fad3685954 (diff)
downloadbcm5719-llvm-477a2f39cbaa7774743dd2847f54f730fa875fb5.tar.gz
bcm5719-llvm-477a2f39cbaa7774743dd2847f54f730fa875fb5.zip
llvm/test/BugPoint/compile-custom.ll.py: Make it py3-compatible. [PR19112]
FIXME: Get rid of invoking this. I guess it wouldn't run on win32 due to lacking of shell support. llvm-svn: 203740
Diffstat (limited to 'llvm/test/BugPoint')
-rwxr-xr-xllvm/test/BugPoint/compile-custom.ll.py2
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)
OpenPOWER on IntegriCloud