provekit_noirc_driver 1.0.0-beta.20-alpha.1

Noir compiler driver.
Documentation
1
2
3
4
5
6
/// An identity function that *hints* to the compiler to be maximally pessimistic about what `black_box` could do.
///
/// This can be used to block the SSA optimization passes being applied to a value, which should help to prevent
/// test programs from being optimized down to nothing and have them resemble runtime code more closely.
#[builtin(black_box)]
pub fn black_box<T>(value: T) -> T {}