Skip to content

Commit

Permalink
Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Aug 22, 2010
1 parent b1e35ed commit 5e79468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ bm_at2() {
static void
bm_at3() {
start();
List_at(list, -10000);
List_at(list, -100000);
stop();
}

Expand All @@ -109,7 +109,7 @@ main(int argc, const char **argv){
bm("iterate", bm_iterate);
bm("at(100,000)", bm_at);
bm("at(1,000,000)", bm_at2);
bm("at(-10000)", bm_at3);
bm("at(-100,000)", bm_at3);
puts("");
return 0;
}

0 comments on commit 5e79468

Please sign in to comment.