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

Side by Side Diff: test/mjsunit/asm/float64mul.js

Issue 683753004: [turbofan] Transform x * -1.0 to -0.0 - x. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(Empty)
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 function Module(stdlib, foreign, heap) {
6 "use asm";
7 function f1(i) {
8 i = +i;
9 return +(i * -1);
10 }
11 function f2(i) {
12 i = +i;
13 return +(-1 * i);
14 }
15 return { f1: f1, f2: f2 };
16 }
17
18 var m = Module(this, {}, new ArrayBuffer(64 * 1024));
19
20 for (var i = -2147483648; i < 2147483648; i += 3999777) {
21 assertEquals(-i, m.f1(i));
22 assertEquals(-i, m.f2(i));
23 }
Jarin 2014/11/06 06:07:49 Could we possibly test the corner cases, such as -
Benedikt Meurer 2014/11/06 06:12:47 Done.
OLDNEW
« no previous file with comments | « src/compiler/machine-operator-reducer.cc ('k') | test/unittests/compiler/machine-operator-reducer-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698