[GPU] Remove a dangerous comment about break after exece [ci skip]

There can be jumps across an exece, so the code beyond it may still be
executed.
This commit is contained in:
Triang3l 2023-05-05 21:27:42 +03:00
parent 53f98d1fe6
commit 0e81293b02
1 changed files with 0 additions and 1 deletions

View File

@ -186,7 +186,6 @@ void Shader::AnalyzeUcode(StringBuffer& ucode_disasm_buffer) {
constant_register_map_.bool_bitmap[bool_constant_index / 32] |= constant_register_map_.bool_bitmap[bool_constant_index / 32] |=
uint32_t(1) << (bool_constant_index % 32); uint32_t(1) << (bool_constant_index % 32);
} }
// TODO(benvanik): break if (DoesControlFlowOpcodeEndShader(cf.opcode()))?
} }
} }
ucode_disassembly_ = ucode_disasm_buffer.to_string(); ucode_disassembly_ = ucode_disasm_buffer.to_string();