1// 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-asm-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))()); 18