diff options
Diffstat (limited to 'lib/xixanta/src/node.rs')
| -rw-r--r-- | lib/xixanta/src/node.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/xixanta/src/node.rs b/lib/xixanta/src/node.rs index d91177e..4f25158 100644 --- a/lib/xixanta/src/node.rs +++ b/lib/xixanta/src/node.rs @@ -275,6 +275,7 @@ pub enum CommentType { AsanReserve(usize), AsanStack(Range<usize>), AsanIgnore, + AsanSafe, } /// The PNode type. @@ -378,6 +379,7 @@ impl fmt::Display for NodeType { CommentType::AsanReserve(_) => write!(f, ";; asan:reserve"), CommentType::AsanStack(_) => write!(f, ";; asan:stack"), CommentType::AsanIgnore => write!(f, ";; asan:ignore"), + CommentType::AsanSafe => write!(f, ";; asan:safe"), }, } } |
