1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2025-02-19 12:40:29 +00:00

SPU LLVM: gisable NewGVN pass

It goes into an endless loop with memory leak for some reason.
This commit is contained in:
Nekotekina 2020-02-03 11:15:26 +03:00
parent 7f4e546f19
commit f9a8efe406

@ -4701,7 +4701,7 @@ public:
// Basic optimizations // Basic optimizations
pm.add(createEarlyCSEPass()); pm.add(createEarlyCSEPass());
pm.add(createCFGSimplificationPass()); pm.add(createCFGSimplificationPass());
pm.add(createNewGVNPass()); //pm.add(createNewGVNPass());
pm.add(createDeadStoreEliminationPass()); pm.add(createDeadStoreEliminationPass());
pm.add(createLICMPass()); pm.add(createLICMPass());
pm.add(createAggressiveDCEPass()); pm.add(createAggressiveDCEPass());