tweeks to the c tests
also figured out hello was caching stopped that to make results comparable even wrote a hello assembler version which is just 10% faster than soml :-)
This commit is contained in:
9
test/bench/c/loop.c
Normal file
9
test/bench/c/loop.c
Normal file
@ -0,0 +1,9 @@
|
||||
#include<stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
int counter = 100352 - 352;
|
||||
while(counter) {
|
||||
counter = counter - 1;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user