Ver Fonte

Increase loop counter to 100k, from 20k

Fabian há 3 anos atrás
pai
commit
188e0ce796
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/rust/cpu/cpu.rs

+ 1 - 1
src/rust/cpu/cpu.rs

@@ -242,7 +242,7 @@ pub const CHECK_TLB_INVARIANTS: bool = false;
 
 pub const DEBUG: bool = cfg!(debug_assertions);
 
-pub const LOOP_COUNTER: i32 = 20011;
+pub const LOOP_COUNTER: i32 = 100_003;
 pub const TSC_RATE: f64 = 1_000_000.0;
 
 pub static mut jit_block_boundary: bool = false;