mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-03 21:41:19 +12:00
General aarch64 improvements & Apple Silicon support (#1255)
This commit is contained in:
parent
c8ffff8f41
commit
00ff5549d9
18 changed files with 405 additions and 32 deletions
|
@ -169,8 +169,10 @@ struct AArch64GenContext_t : CodeGenerator
|
|||
|
||||
bool processAllJumps()
|
||||
{
|
||||
for (auto&& [jumpStart, jumpInfo] : jumps)
|
||||
for (auto jump : jumps)
|
||||
{
|
||||
auto jumpStart = jump.first;
|
||||
auto jumpInfo = jump.second;
|
||||
bool success = std::visit(
|
||||
[&, this](const auto& jump) {
|
||||
setSize(jumpStart);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue