Sha256: 38f1d8936226f906e824c2a751d43bf54a3438a8d67a24f7734191beea2d9f62

Contents?: true

Size: 584 Bytes

Versions: 2

Compression:

Stored size: 584 Bytes

Contents

/*
 * Released under the terms of the Apache 2.0 license with LLVM
 * exception. See `LICENSE` for details.
 */

//! Utilities for fuzzing.

pub mod func;

// Re-exports for fuzz targets.

pub mod domtree {
    pub use crate::domtree::*;
}
pub mod postorder {
    pub use crate::postorder::*;
}
pub mod moves {
    pub use crate::moves::*;
}
pub mod cfg {
    pub use crate::cfg::*;
}
pub mod ion {
    pub use crate::ion::*;
}
pub mod fastalloc {
    pub use crate::fastalloc::*;
}
pub mod checker {
    pub use crate::checker::*;
}

pub use libfuzzer_sys::{arbitrary, fuzz_target};

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/regalloc2-0.11.1/src/fuzzing/mod.rs
wasmtime-28.0.0 ./ext/cargo-vendor/regalloc2-0.11.1/src/fuzzing/mod.rs