@@ -376,7 +376,7 @@ mod desc {
376376 pub const parse_panic_strategy: & str = "either `unwind` or `abort`" ;
377377 pub const parse_opt_panic_strategy: & str = parse_panic_strategy;
378378 pub const parse_relro_level: & str = "one of: `full`, `partial`, or `off`" ;
379- pub const parse_sanitizers: & str = "comma separated list of sanitizers: `address`, `cfi`, `hwaddress`, `leak`, `memory` or `thread`" ;
379+ pub const parse_sanitizers: & str = "comma separated list of sanitizers: `address`, `cfi`, `hwaddress`, `leak`, `memory`, `memtag`, or `thread`" ;
380380 pub const parse_sanitizer_memory_track_origins: & str = "0, 1, or 2" ;
381381 pub const parse_cfguard: & str =
382382 "either a boolean (`yes`, `no`, `on`, `off`, etc), `checks`, or `nochecks`" ;
@@ -638,6 +638,7 @@ mod parse {
638638 "cfi" => SanitizerSet :: CFI ,
639639 "leak" => SanitizerSet :: LEAK ,
640640 "memory" => SanitizerSet :: MEMORY ,
641+ "memtag" => SanitizerSet :: MEMTAG ,
641642 "thread" => SanitizerSet :: THREAD ,
642643 "hwaddress" => SanitizerSet :: HWADDRESS ,
643644 _ => return false ,
0 commit comments