aboutsummaryrefslogtreecommitdiff
path: root/lib/xixanta/src/node.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/xixanta/src/node.rs')
-rw-r--r--lib/xixanta/src/node.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xixanta/src/node.rs b/lib/xixanta/src/node.rs
index 4281c4a..7cfc107 100644
--- a/lib/xixanta/src/node.rs
+++ b/lib/xixanta/src/node.rs
@@ -252,7 +252,7 @@ pub enum OperationType {
#[derive(Debug, Clone, PartialEq)]
pub enum CommentType {
AsanReserve(u8),
- AsanWeak,
+ AsanIgnore,
}
/// The PNode type.
@@ -349,7 +349,7 @@ impl fmt::Display for NodeType {
},
NodeType::Comment(ct) => match ct {
CommentType::AsanReserve(_) => write!(f, ";; asan:reserve"),
- CommentType::AsanWeak => write!(f, ";; asan:weak"),
+ CommentType::AsanIgnore => write!(f, ";; asan:ignore"),
},
}
}