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

Unified Diff: test/mjsunit/regress/regress-123919.js

Issue 14284010: Introduce HObjectAccess, which is used by LoadNamedField and StoreNamedField to denote what parts (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Use BitField utility instead of C-language bitfield for portion and offset in HObjectAccess. Created 7 years, 7 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/x64/lithium-x64.cc ('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-123919.js
diff --git a/test/mjsunit/regress/regress-123919.js b/test/mjsunit/regress/regress-123919.js
index be3460815bdd1e0c5196eea877771a02801a63dc..93186e4bd1134fc488bea3c1bafed0f6376d2f01 100644
--- a/test/mjsunit/regress/regress-123919.js
+++ b/test/mjsunit/regress/regress-123919.js
@@ -38,6 +38,8 @@ function g(max,val) {
function f(max) {
var val = 0.5;
var obj = new g(max,val);
+ %DebugPrint(obj);
+ %DebugPrint(obj.val);
assertSame(val, obj.val);
}
« no previous file with comments | « src/x64/lithium-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698