diff options
-rw-r--r-- | llvm/test/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index d628dfb76f2..cd615b3c573 100644 --- a/llvm/test/lit.cfg +++ b/llvm/test/lit.cfg @@ -330,7 +330,7 @@ def have_ld_plugin_support(): return False ld_cmd = subprocess.Popen(['ld', '--help'], stdout = subprocess.PIPE) - ld_out = ld_cmd.stdout.read() + ld_out = ld_cmd.stdout.read().decode() ld_cmd.wait() if not '-plugin' in ld_out: |