Sign in
webkit
/
WebKit
/
32c72b34dec7bc7ae0fc8b6222c23cdb06e5393c
/
.
/
JSTests
/
microbenchmarks
/
number-to-string-with-radix-10.js
blob: 9c083cb4b6fbabe67fdf5c132d0e5d490c5f81c4 [
file
] [
log
] [
blame
]
function
test
()
{
for
(
var
i
=
0
;
i
<
10
;
++
i
)
var
result
=
i
.
toString
(
10
);
return
result
;
}
noInline
(
test
);
for
(
var
i
=
0
;
i
<
1e4
;
++
i
)
test
();