15 lines
427 B
JavaScript
15 lines
427 B
JavaScript
|
// Copyright 2017 the V8 project authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
r = [
|
||
|
14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
|
||
|
14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14
|
||
|
];
|
||
|
|
||
|
|
||
|
for (i = -1; i < 100000; i++) {
|
||
|
r2 = r.map(function(y) {return y/64} );
|
||
|
assertTrue(r2[0] < 1);
|
||
|
}
|