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

Side by Side Diff: test/mjsunit/regress/regress-crbug-630952.js

Issue 2177193002: [Turbofan] Too-strong CHECK during optimization. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix nit. Created 4 years, 5 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
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 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: --always-opt
6 try {
7 function __f_4(sign_bit,
8 mantissa_29_bits) {
9 }
10 __f_4.prototype.returnSpecial = function() {
11 this.mantissa_29_bits * mantissa_29_shift;
12 }
13 __f_4.prototype.toSingle = function() {
14 if (-65535) return this.toSingleSubnormal();
15 }
16 __f_4.prototype.toSingleSubnormal = function() {
17 if (__v_15) {
18 var __v_7 = this.mantissa_29_bits == -1 &&
19 (__v_13 & __v_10 ) == 0;
20 }
21 __v_8 >>= __v_7;
22 }
23 __v_14 = new __f_4();
24 __v_14.toSingle();
25 } catch(e) {}
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698