Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AMDGPU] Fix unreachable reg bit width #122107

Prev Previous commit
Next Next commit
fix lit.cfg.py
  • Loading branch information
Shoreshen committed Jan 10, 2025
commit 89e1047bd5b72f0c7604cc5b2ec8da9d3d3c5f4b
2 changes: 1 addition & 1 deletion llvm/test/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def have_cxx_shared_library():
print("could not exec llvm-readobj")
return False

readobj_out = readobj_cmd.stdout.read().decode("utf-8")
readobj_out = readobj_cmd.stdout.read().decode("ascii")
readobj_cmd.wait()

regex = re.compile(r"(libc\+\+|libstdc\+\+|msvcp).*\.(so|dylib|dll)")
Expand Down
Loading