Sign in
webkit
/
WebKit
/
070f085f5e8356d46f8d4feb8b86126d4b0078d5
/
.
/
JSTests
/
microbenchmarks
/
number-to-string-with-radix-10.js
blob: 6333bc5e18a0537d784676a9af5d55a9f49e3516 [
file
] [
log
] [
blame
]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
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
();