diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-01-05 14:18:04 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-01-05 14:18:04 +0000 |
commit | f199f4c593ec96835c1680795ddd3b33e29a29f8 (patch) | |
tree | af9335bb25e7d045c0554abfd847d767cdc05ef7 /llvm | |
parent | b0f54e79091b09544d37ad726d46e33683f4382b (diff) | |
download | bcm5719-llvm-f199f4c593ec96835c1680795ddd3b33e29a29f8.tar.gz bcm5719-llvm-f199f4c593ec96835c1680795ddd3b33e29a29f8.zip |
llvm/test/lit.cfg: have_ld_plugin_support(): Use decode() for stdout.
llvm-svn: 225171
Diffstat (limited to 'llvm')
-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: |