Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
microbenchmarks
/
repeat-multi-get-by-offset.js
blob: 8e6446a9d1779026fe74c38715ae132e3769f1f9 [
file
] [
log
] [
blame
] [
edit
]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function
foo
(
o
)
{
return
o
.
f
+
o
.
g
;
}
noInline
(
foo
);
var
o
=
{
f
:
1
,
g
:
2
};
var
p
=
{
g
:
3
,
f
:
4
};
for
(
var
i
=
0
;
i
<
2000000
;
++
i
)
{
foo
(
o
);
foo
(
p
);
}