| 159 | /// Getter and setter for the try block end for End instruction. |
| 160 | bool isTryBlockLast() const noexcept { return Data.EndFlags.IsTryBlockLast; } |
| 161 | void setTryBlockLast(bool Last = true) noexcept { |
| 162 | Data.EndFlags.IsTryBlockLast = Last; |
| 163 | } |
| 164 | |
| 165 | /// Getter and setter for Jump for Br* instructions. |
| 166 | const JumpDescriptor &getJump() const noexcept { return Data.Jump; } |