summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/compiler/regress-444695.js
blob: 168ae25c7052d8abbe47bac9b571bac1b2eceb3a (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2014 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.

var foo = (function(stdlib, foreign, heap) {
  "use asm";
  var MEM = new stdlib.Uint8Array(heap);
  function foo(x) { MEM[x | 0] *= 0; }
  return {foo: foo};
})(this, {}, new ArrayBuffer(1)).foo;
foo(-926416896 * 8 * 1024);