diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-03-13 00:10:37 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-03-13 00:10:37 +0000 |
commit | 477a2f39cbaa7774743dd2847f54f730fa875fb5 (patch) | |
tree | c0b18c01657bc09e3ac32bf3eeb4c0797f21b0bc /llvm/test/BugPoint | |
parent | 07e7486128a40887f5b55d0f4c9b29fad3685954 (diff) | |
download | bcm5719-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-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) |