Sign in
webkit
/
WebKit
/
b387ed984cfa86e07321d6d915fc6d801afbcecc
/
.
/
JSTests
/
microbenchmarks
/
int8-out-of-bounds.js
blob: e5f9bd12f8d2b90b7491a84630b7203f0600d53d [
file
] [
log
] [
blame
]
function
foo
(
a
,
inBounds
)
{
a
[
0
]
=
1
;
if
(!
inBounds
)
{
a
[
1
]
=
2
;
a
[
2
]
=
3
;
}
}
noInline
(
foo
);
var
array
=
new
Int8Array
(
1
);
for
(
var
i
=
0
;
i
<
100000
;
++
i
)
foo
(
array
,
true
);
for
(
var
i
=
0
;
i
<
100000
;
++
i
)
foo
(
array
,
false
);