blob: d36fe30ce06e610a0dad89a3c34448c4b46944a9 [file] [log] [blame]
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001// Copyright 2015 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
5var stdlib = this;
6var buffer = new ArrayBuffer(64 * 1024);
7var foreign = {}
8
9var foo = (function Module(stdlib, foreign, heap) {
10 "use asm";
11 function foo(i) {
12 return !(i ? 1 : false);
13 }
14 return {foo:foo};
15})(stdlib, foreign, buffer).foo;
16
17assertFalse(foo(1));