summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/microinstruction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/frontend/ir/microinstruction.cpp')
-rw-r--r--src/shader_recompiler/frontend/ir/microinstruction.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/shader_recompiler/frontend/ir/microinstruction.cpp b/src/shader_recompiler/frontend/ir/microinstruction.cpp
index efa426808..7555ac00a 100644
--- a/src/shader_recompiler/frontend/ir/microinstruction.cpp
+++ b/src/shader_recompiler/frontend/ir/microinstruction.cpp
@@ -275,10 +275,6 @@ void Inst::AddPhiOperand(Block* predecessor, const Value& value) {
275 if (!value.IsImmediate()) { 275 if (!value.IsImmediate()) {
276 Use(value); 276 Use(value);
277 } 277 }
278 if (Flags<IR::Type>() == IR::Type::Void) {
279 // Set the type of the phi node
280 SetFlags<IR::Type>(value.Type());
281 }
282 phi_args.emplace_back(predecessor, value); 278 phi_args.emplace_back(predecessor, value);
283} 279}
284 280