From 801089cf445f248f12cc47b568cc6e71fdd50577 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sun, 12 Aug 2018 15:20:10 +0300 Subject: [PATCH] PPU LLVM: always link syscall_## functions Regardless of whether they have name or not Should fix "Linkage failed" errors introduced after #4886 --- rpcs3/Emu/Cell/PPUThread.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rpcs3/Emu/Cell/PPUThread.cpp b/rpcs3/Emu/Cell/PPUThread.cpp index 631511c69..2f972d7ac 100644 --- a/rpcs3/Emu/Cell/PPUThread.cpp +++ b/rpcs3/Emu/Cell/PPUThread.cpp @@ -1319,6 +1319,7 @@ extern void ppu_initialize(const ppu_module& info) if (auto sc = ppu_get_syscall(index)) { link_table.emplace(fmt::format("%s", ppu_syscall_code(index)), (u64)sc); + link_table.emplace(fmt::format("syscall_%u", index), (u64)sc); } }