cairo-native 0.9.0-rc.4

A compiler to convert Cairo's IR Sierra code to MLIR and execute it.
1
2
3
4
5
6
7
use core::ec::{ec_state_add, EcPoint, EcState};
use core::zeroable::NonZero;

fn run_test(mut state: EcState, point: NonZero<EcPoint>) -> EcState {
    ec_state_add(ref state, point);
    state
}