Adds the validate_ssa flag to the RegallocOptions struct, enabling ssa validation of inputs before register allocation takes place.
32 lines
529 B
Rust
32 lines
529 B
Rust
/*
|
|
* 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 checker {
|
|
pub use crate::checker::*;
|
|
}
|
|
|
|
pub use libfuzzer_sys::{arbitrary, fuzz_target};
|