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

Unified Diff: test/mjsunit/compiler/regress-stacktrace.js

Issue 5964005: Shorten live ranges of argument subexpressions. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 10 years 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
« src/ia32/lithium-codegen-ia32.cc ('K') | « src/ia32/lithium-ia32.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/regress-stacktrace.js
diff --git a/test/mjsunit/compiler/regress-stacktrace.js b/test/mjsunit/compiler/regress-stacktrace.js
index 843dd1208c767cf53e2831609a4d2485ec438e54..72a6f3bf954d21fabee7a1754e8ea9ddb5485ac7 100644
--- a/test/mjsunit/compiler/regress-stacktrace.js
+++ b/test/mjsunit/compiler/regress-stacktrace.js
@@ -43,10 +43,10 @@ try {
var p3 = stack.indexOf("at three");
var p2 = stack.indexOf("at two");
var p1 = stack.indexOf("at one");
- assertTrue(p3 != -1);
- assertTrue(p2 != -1);
- assertTrue(p1 != -1);
- assertTrue(p3 < p2);
- assertTrue(p2 < p1);
print(stack);
+ assertTrue(p3 != -1, "p3 != -1");
+ assertTrue(p2 != -1, "p2 != -1");
+ assertTrue(p1 != -1, "p1 != -1");
+ assertTrue(p3 < p2, "p3 < p2");
+ assertTrue(p2 < p1, "p2 < p1");
}
« src/ia32/lithium-codegen-ia32.cc ('K') | « src/ia32/lithium-ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698