Skip to content
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
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