| 121 | /// Getter and setter for jump count to End instruction. |
| 122 | uint32_t getJumpEnd() const noexcept { return Data.Blocks.JumpEnd; } |
| 123 | void setJumpEnd(const uint32_t Cnt) noexcept { Data.Blocks.JumpEnd = Cnt; } |
| 124 | |
| 125 | /// Getter and setter for jump count to Else instruction. |
| 126 | uint32_t getJumpElse() const noexcept { return Data.Blocks.JumpElse; } |