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

Unified Diff: test/mjsunit/regress/regress-crbug-387636.js

Issue 331863015: Remove bogus assertions in HCompareObjectEqAndBranch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: test case Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/hydrogen-instructions.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-crbug-387636.js
diff --git a/test/mjsunit/regress/regress-385054.js b/test/mjsunit/regress/regress-crbug-387636.js
similarity index 59%
copy from test/mjsunit/regress/regress-385054.js
copy to test/mjsunit/regress/regress-crbug-387636.js
index 115bca0d21989e2a82325aeb66d8c06aa5ab198c..09680487e8d9de6eb2b21e69872fb0ca29228e5a 100644
--- a/test/mjsunit/regress/regress-385054.js
+++ b/test/mjsunit/regress/regress-crbug-387636.js
@@ -1,16 +1,14 @@
-// Copyright 2014 the V8 project authors. All rights reserved.
+// Copyright 2012 the V8 project authors. All rights reserved.
Jakob Kummerow 2014/06/24 08:42:03 nit: 2014
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --allow-natives-syntax
function f(x) {
Jakob Kummerow 2014/06/24 08:42:03 nit: what do we need |x| for?
- var a = [1, 2];
- a[x];
- return a[0 - x];
+ [].indexOf(0x40000000);
}
f(0);
f(0);
%OptimizeFunctionOnNextCall(f);
-assertEquals(undefined, f(1));
+f(0);
« no previous file with comments | « src/hydrogen-instructions.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698