Skip to content

[AMDGPU] Re-Re-apply: Implement vop3p complex pattern optmization for gisel #146984

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

Merged
merged 6 commits into from
Jul 8, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix building error
  • Loading branch information
Shoreshen committed Jul 4, 2025
commit 6ac62f931e55eb02e546d67c8ea28d9a672f7fd1
1 change: 1 addition & 0 deletions llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4563,6 +4563,7 @@ static SrcStatus getNegStatus(Register Reg, SrcStatus S,
default:
llvm_unreachable("unexpected SrcStatus");
}
llvm_unreachable("unexpected SrcStatus");
}

static std::optional<std::pair<Register, SrcStatus>>
Expand Down
2 changes: 1 addition & 1 deletion llvm/test/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ def have_cxx_shared_library():
print("could not exec llvm-readobj")
return False

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

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