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

Unified Diff: src/ic.cc

Issue 8971002: Fix GCC 4.7 warnings: (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Fix GCC 4.7 warnings: Created 9 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
Index: src/ic.cc
===================================================================
--- src/ic.cc (revision 10282)
+++ src/ic.cc (working copy)
@@ -622,7 +622,7 @@
return isolate()->stub_cache()->ComputeCallNormal(
argc, kind_, extra_state);
}
- break;
+ return Handle<Code>::null();
Vyacheslav Egorov (Chromium) 2011/12/20 15:45:14 ditto. what does compiler say? this can never be r
}
case INTERCEPTOR:
ASSERT(HasInterceptorGetter(*holder));

Powered by Google App Engine
This is Rietveld 408576698