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

Unified Diff: src/ia32/ic-ia32.cc

Issue 9584006: Inline ordered relative compares of mixed double/undefined values. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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
Index: src/ia32/ic-ia32.cc
diff --git a/src/ia32/ic-ia32.cc b/src/ia32/ic-ia32.cc
index 33f247a349e0641b60c57bb56c67f80ed831d6aa..ec4bb28888c85188f8474c80825e601c5d0fe125 100644
--- a/src/ia32/ic-ia32.cc
+++ b/src/ia32/ic-ia32.cc
@@ -1726,7 +1726,9 @@ void CompareIC::UpdateCaches(Handle<Object> x, Handle<Object> y) {
#ifdef DEBUG
if (FLAG_trace_ic) {
- PrintF("[CompareIC (%s->%s)#%s]\n",
+ PrintF("[CompareIC in ");
+ JavaScriptFrame::PrintTop(stdout, false, true);
fschneider 2012/03/02 12:39:15 Leftover from debugging?
danno 2012/03/02 13:28:45 Done.
+ PrintF(" (%s->%s)#%s]\n",
GetStateName(previous_state),
GetStateName(state),
Token::Name(op_));

Powered by Google App Engine
This is Rietveld 408576698