Skip to content

Commit 9f8d9c5

Browse files
elad335AniLeo
authored andcommitted
SPU LLVM: Revert store postponing restrictrictions
1 parent 4084e6f commit 9f8d9c5

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

rpcs3/Emu/Cell/SPULLVMRecompiler.cpp

-9
Original file line numberDiff line numberDiff line change
@@ -2340,7 +2340,6 @@ class spu_llvm_recompiler : public spu_recompiler_base, public cpu_translator
23402340
}
23412341

23422342
bool has_gpr_barriers_in_the_way = false;
2343-
bool potential_loop = false;
23442343

23452344
for (auto [a2, b2] : sucs)
23462345
{
@@ -2352,7 +2351,6 @@ class spu_llvm_recompiler : public spu_recompiler_base, public cpu_translator
23522351
break;
23532352
}
23542353

2355-
potential_loop = true;
23562354
continue;
23572355
}
23582356

@@ -2392,7 +2390,6 @@ class spu_llvm_recompiler : public spu_recompiler_base, public cpu_translator
23922390
break;
23932391
}
23942392

2395-
potential_loop = true;
23962393
continue;
23972394
}
23982395

@@ -2427,12 +2424,6 @@ class spu_llvm_recompiler : public spu_recompiler_base, public cpu_translator
24272424
continue;
24282425
}
24292426

2430-
if (!potential_loop)
2431-
{
2432-
spu_log.trace("Avoided postponing r%u store from block 0x%x (not loop)", i, block_q[bi].first);
2433-
continue;
2434-
}
2435-
24362427
for (auto [a2, b2] : sucs)
24372428
{
24382429
if (b2 != bqbi)

0 commit comments

Comments
 (0)