blob: ba2823fa358e26a33fe9eac49a4b8a23879d6c04 [file] [log] [blame]
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001// Copyright 2014 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Flags: --turbo-asm --turbo-deoptimization --allow-natives-syntax
6
7function Module(heap) {
8 "use asm";
9 var a = new Uint8Array(heap);
10 function f() {
11 var x = a[0] | 0;
12 %DeoptimizeFunction(f);
13 return x;
14 }
15 return f;
16}
17assertEquals(0, Module(new ArrayBuffer(1))());