ristretto_jit 0.30.0

JVM JIT Compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
///
/// # References
/// - [JVMS ยง6.5.nop](https://docs.oracle.com/javase/specs/jvms/se25/html/jvms-6.html#jvms-6.5.nop)
pub(crate) fn nop() {
    // No operation
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_nop() {
        nop();
    }
}