Branches to an instruction with the current architecture.
(kind: BranchKind)
| 113 | impl BranchInfo { |
| 114 | /// Branches to an instruction with the current architecture. |
| 115 | pub fn new(kind: BranchKind) -> Self { |
| 116 | Self { arch: None, kind } |
| 117 | } |
| 118 | |
| 119 | /// Branches to an instruction with an explicit architecture. |
| 120 | /// |