diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-09-02 16:40:38 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-09-02 16:40:38 +0200 |
| commit | 8e7993a63e32981757c4d65fe6519439dde97d8e (patch) | |
| tree | 082979ffe3d3b1880c02d3e56f2fd4a47b93094e /lib/xixanta/fuzz/fuzz_targets/fuzz_target_parser.rs | |
| parent | fb2d20e715dd04d27c4873c4989202133783f161 (diff) | |
| download | tools.nes-8e7993a63e32981757c4d65fe6519439dde97d8e.tar.gz tools.nes-8e7993a63e32981757c4d65fe6519439dde97d8e.zip | |
assembler: Add support for asan:reserve,ignore
This is the initial support for both directives for the address
sanitizer. Note that asan:weak has been moved into asan:ignore, which is
not exactly the same but for now it should suffice.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'lib/xixanta/fuzz/fuzz_targets/fuzz_target_parser.rs')
| -rw-r--r-- | lib/xixanta/fuzz/fuzz_targets/fuzz_target_parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xixanta/fuzz/fuzz_targets/fuzz_target_parser.rs b/lib/xixanta/fuzz/fuzz_targets/fuzz_target_parser.rs index da8a350..a68b9e2 100644 --- a/lib/xixanta/fuzz/fuzz_targets/fuzz_target_parser.rs +++ b/lib/xixanta/fuzz/fuzz_targets/fuzz_target_parser.rs @@ -4,5 +4,5 @@ use libfuzzer_sys::fuzz_target; fuzz_target!(|data: &[u8]| { let mut parser = xixanta::parser::Parser::default(); - let _ = parser.parse(data, xixanta::SourceInfo::default()); + let _ = parser.parse(data, &xixanta::SourceInfo::default()); }); |
