Sign in
webkit
/
WebKit
/
4a12667b4cecb17e84375f8db50c9b2d39b06fe4
/
.
/
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
();