|
|
|
|
|
by blipvert
1141 days ago
|
|
You need to slightly modify your code. Rather than: while (condition) {
…
} Do:
#define MAX 1000
for n = 0; n < MAX; n++ {
if !condition break;
…
} Unroll all loops, don’t allow any backward jumps and limit to (say) 1m instructions. |
|