diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-04-16 01:22:40 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-16 01:22:40 -0300 |
commit | 612966399bcf07490a12d58c05bc30d4f93f7310 (patch) | |
tree | 626808c33746444ce2f32e76a95cfa141c914dd7 /src | |
parent | 319df1db77f5161ff17936f924fef0aed4dede45 (diff) | |
parent | 72a224d3fc25d41b5746dc3ceee59d0bc071755c (diff) |
Merge pull request #3685 from lioncash/copies
control_flow: Make use of std::move in TryInspectAddress()
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/shader/control_flow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/shader/control_flow.cpp b/src/video_core/shader/control_flow.cpp index 2e2711350..6d313963a 100644 --- a/src/video_core/shader/control_flow.cpp +++ b/src/video_core/shader/control_flow.cpp @@ -484,17 +484,17 @@ bool TryInspectAddress(CFGRebuildState& state) { } case BlockCollision::Inside: { // This case is the tricky one: - // We need to Split the block in 2 sepparate blocks + // We need to split the block into 2 separate blocks const u32 end = state.block_info[block_index].end; BlockInfo& new_block = CreateBlockInfo(state, address, end); BlockInfo& current_block = state.block_info[block_index]; current_block.end = address - 1; - new_block.branch = current_block.branch; + new_block.branch = std::move(current_block.branch); BlockBranchInfo forward_branch = MakeBranchInfo<SingleBranch>(); const auto branch = std::get_if<SingleBranch>(forward_branch.get()); branch->address = address; branch->ignore = true; - current_block.branch = forward_branch; + current_block.branch = std::move(forward_branch); return true; } default: |