blob: 5be2d0ce6b341093200ffc5b5c74d67ef86cb23f [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
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00005// Flags: --turbo-asm --turbo-asm-deoptimization --allow-natives-syntax
Emily Bernierd0a1eb72015-03-24 16:35:39 -04006
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))());