From fcdb61564b424b3efb871ccd5329f2bffffa1db3 Mon Sep 17 00:00:00 2001 From: lizzie Date: Sun, 1 Feb 2026 06:05:05 +0000 Subject: [PATCH] fix, trust --- src/shader_recompiler/ir_opt/ssa_rewrite_pass.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/shader_recompiler/ir_opt/ssa_rewrite_pass.cpp b/src/shader_recompiler/ir_opt/ssa_rewrite_pass.cpp index 88e0a6b58b..2bde38a661 100644 --- a/src/shader_recompiler/ir_opt/ssa_rewrite_pass.cpp +++ b/src/shader_recompiler/ir_opt/ssa_rewrite_pass.cpp @@ -169,7 +169,8 @@ public: template IR::Value ReadVariable(Type variable, IR::Block* root_block) { - boost::container::small_vector, 64> stack{ + // TODO: Windows commits sodoku if you use small_vector + std::vector> stack{ ReadState(nullptr), ReadState(root_block), }; @@ -299,7 +300,8 @@ private: return same; } - ankerl::unordered_dense::map> incomplete_phis; + // TODO: Windows dies with stack exhaustion? + std::unordered_map> incomplete_phis; DefTable current_def; };