start adding fuzzing
authorJacob Lifshay <programmerjake@gmail.com>
Sat, 21 Jan 2023 01:32:17 +0000 (17:32 -0800)
committerJacob Lifshay <programmerjake@gmail.com>
Sat, 21 Jan 2023 01:32:17 +0000 (17:32 -0800)
commit296f3879b11fb2dce0a02c5aea6aae2c624c7e89
tree29b46b7432932efc08fdd4a32fbee19a4a4771f5
parentcca2522a8bea586559fb11002e246bced61d9d09
start adding fuzzing
13 files changed:
Cargo.lock
register_allocator/Cargo.toml
register_allocator/fuzz/.gitignore [new file with mode: 0644]
register_allocator/fuzz/Cargo.lock [new file with mode: 0644]
register_allocator/fuzz/Cargo.toml [new file with mode: 0644]
register_allocator/fuzz/fuzz_targets/fn_new.rs [new file with mode: 0644]
register_allocator/src/error.rs
register_allocator/src/function.rs
register_allocator/src/fuzzing.rs [new file with mode: 0644]
register_allocator/src/lib.rs
register_allocator/src/loc.rs
register_allocator/src/loc_set.rs
register_allocator/src/macros.rs