This reverts commit 8c2b57721728233e074db69d93517614de338055, reversing changes made to 9cf18e98f82d85fa41141391d54485b8747da46f.
15 lines
365 B
Rust
15 lines
365 B
Rust
#![crate_type = "cdylib"]
|
|
#![no_std]
|
|
|
|
#[panic_handler]
|
|
fn my_panic(_info: &core::panic::PanicInfo) -> ! {
|
|
loop {}
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub fn multer(a: i128, b: i128) -> i128 {
|
|
// Trigger usage of the __multi3 compiler intrinsic which then leads to an imported
|
|
// panic function in case of a bug. We verify that no imports exist in our verifier.
|
|
a * b
|
|
}
|