feat(furc/ssa): implement copy propagation

Refs: #2
This commit is contained in:
2026-06-14 11:59:39 +02:00
parent ac1e226b4b
commit 986015bc09
3 changed files with 60 additions and 1 deletions
+3 -1
View File
@@ -29,9 +29,11 @@ using register_t = std::uint32_t;
* @see operand_t::Register
*/
struct register_operand {
register_t reg;
register_t reg = 0;
std::uint32_t ver = 0;
register_operand() = default;
register_operand(register_t reg)
: reg(reg) {}