From f9a8efe406b8192e7928f7a3c43347588f6c137e Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Mon, 3 Feb 2020 11:15:26 +0300 Subject: [PATCH] SPU LLVM: gisable NewGVN pass It goes into an endless loop with memory leak for some reason. --- rpcs3/Emu/Cell/SPURecompiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/SPURecompiler.cpp b/rpcs3/Emu/Cell/SPURecompiler.cpp index e3547f5ca8..4aba09f3ed 100644 --- a/rpcs3/Emu/Cell/SPURecompiler.cpp +++ b/rpcs3/Emu/Cell/SPURecompiler.cpp @@ -4701,7 +4701,7 @@ public: // Basic optimizations pm.add(createEarlyCSEPass()); pm.add(createCFGSimplificationPass()); - pm.add(createNewGVNPass()); + //pm.add(createNewGVNPass()); pm.add(createDeadStoreEliminationPass()); pm.add(createLICMPass()); pm.add(createAggressiveDCEPass());