diff options
| -rw-r--r-- | rust/src/basic_block.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/basic_block.rs b/rust/src/basic_block.rs index d12bb3e9..67b85987 100644 --- a/rust/src/basic_block.rs +++ b/rust/src/basic_block.rs @@ -30,7 +30,7 @@ pub struct Edge<'a, C: 'a + BlockContext> { pub branch: BranchType, pub back_edge: bool, pub source: Guard<'a, BasicBlock<C>>, - target: Guard<'a, BasicBlock<C>>, + pub target: Guard<'a, BasicBlock<C>>, } impl<'a, C: 'a + fmt::Debug + BlockContext> fmt::Debug for Edge<'a, C> { |
