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

Unified Diff: test/mjsunit/recursive-store-opt.js

Issue 148733005: Move failing ASSERT on ARM to a more sane place. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 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/arm/macro-assembler-arm.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/recursive-store-opt.js
diff --git a/test/mjsunit/regress/regress-store-uncacheable.js b/test/mjsunit/recursive-store-opt.js
similarity index 93%
copy from test/mjsunit/regress/regress-store-uncacheable.js
copy to test/mjsunit/recursive-store-opt.js
index e9c9fc25b49c95293a5c0acea0bea8d073a79e0e..fb2649248dbabc642f864f671d0ce2273ad44bd7 100644
--- a/test/mjsunit/regress/regress-store-uncacheable.js
+++ b/test/mjsunit/recursive-store-opt.js
@@ -1,4 +1,4 @@
-// Copyright 2013 the V8 project authors. All rights reserved.
+// Copyright 2014 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
@@ -27,14 +27,15 @@
// Flags: --allow-natives-syntax
+function g() {
+ this.x = this;
+}
+
function f() {
- var o = {};
- o["<abc>"] = 123;
+ return new g();
}
f();
f();
-f();
%OptimizeFunctionOnNextCall(f);
f();
-assertOptimized(f);
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698