ristretto_jit 0.22.0

JVM JIT Compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// See: <https://docs.oracle.com/javase/specs/jvms/se24/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();
    }
}