Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(330)

Side by Side Diff: test/mjsunit/compiler/regress-bit-number-constant.js

Issue 850013003: [turbofan] Fix truncation/representation sloppiness wrt. bool/bit. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixes/Cleanups Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 var stdlib = this; 5 var stdlib = this;
6 var buffer = new ArrayBuffer(64 * 1024); 6 var buffer = new ArrayBuffer(64 * 1024);
7 var foreign = {} 7 var foreign = {}
8 8
9 var foo = (function Module(stdlib, foreign, heap) { 9 var foo = (function Module(stdlib, foreign, heap) {
10 "use asm"; 10 "use asm";
11 function foo(i) { 11 function foo(i) {
12 return !(i ? 1 : false); 12 return !(i ? 1 : false);
13 } 13 }
14 return {foo:foo}; 14 return {foo:foo};
15 })(stdlib, foreign, buffer).foo; 15 })(stdlib, foreign, buffer).foo;
16 16
17 assertFalse(foo(1)); 17 assertFalse(foo(1));
18 assertTrue(foo(0));
OLDNEW
« no previous file with comments | « test/mjsunit/compiler/regress-3812.js ('k') | test/unittests/compiler/change-lowering-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698