mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-12-28 18:22:00 +00:00
SPU LLVM: Fix branch to self at start of block state check
This commit is contained in:
parent
eba8e2284b
commit
8da78c098c
@ -3342,7 +3342,7 @@ public:
|
||||
// Emit state check if necessary (TODO: more conditions)
|
||||
for (u32 pred : pfound->second)
|
||||
{
|
||||
if (pred >= baddr && bi > 0)
|
||||
if (pred >= baddr)
|
||||
{
|
||||
// If this block is a target of a backward branch (possibly loop), emit a check
|
||||
check_state(baddr);
|
||||
|
Loading…
Reference in New Issue
Block a user