MCPcopy Create free account
hub / github.com/PLSysSec/wave / check_bitwise_or

Function check_bitwise_or

tools/fuzz-gen/out.rs:736–740  ·  view source on GitHub ↗
(bv1: i32, bv2: i32)

Source from the content-addressed store, hash-verified

734}
735#[quickcheck_macros::quickcheck]
736fn check_bitwise_or(bv1: i32, bv2: i32) -> TestResult {
737 init();
738 let result = bitwise_or(bv1, bv2);
739 TestResult::passed()
740}
741#[quickcheck_macros::quickcheck]
742fn check_bitwise_or_u32(bv1: u32, bv2: u32) -> TestResult {
743 init();

Callers

nothing calls this directly

Calls 2

initFunction · 0.85
bitwise_orFunction · 0.85

Tested by

no test coverage detected