feat(furc): introduce while loop statement

Refs: #2
This commit is contained in:
2026-06-12 23:10:26 +02:00
parent 97c01bc96c
commit 767970c69b
11 changed files with 151 additions and 24 deletions
@@ -444,6 +444,9 @@ public:
public:
instruction_t type() const override { return instruction_t::BranchCond; }
std::vector<operand*> sources() override { return { &m_condition }; }
std::vector<const operand*> sources() const override { return { &m_condition }; }
/**
* @brief Returns this instruction's condition operand.
*