Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion FEXCore/Source/Interface/Core/OpcodeDispatcher/Vector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4997,7 +4997,7 @@ void OpDispatchBuilder::VPERMQOp(OpcodeArgs) {
// In the event that three element subselectors match, then
// the operation can be reduced down to a broadcast and a
// single insert. We return the insertion index, the selector of the unique
// elemenet, followed by any element that would be fine to broadcast from.
// element, followed by any element that would be fine to broadcast from.
using BroadcastIndices = std::optional<std::tuple<uint32_t, uint32_t, uint32_t>>;
const auto BroadcastableInsert = [Selector]() -> BroadcastIndices {
const auto a = (Selector >> 6) & 0b11;
Expand Down
Loading