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

Unified Diff: src/full-codegen.cc

Issue 140943002: Fix logic error in assert in IsUndeclaredGlobal() (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: A few more fixes Created 6 years, 11 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/full-codegen.cc
diff --git a/src/full-codegen.cc b/src/full-codegen.cc
index f88c7d42f348303ea1196e6774cb0f2c95465250..ec25b232844916f8eb7b673895ac09b66e4f0e53 100644
--- a/src/full-codegen.cc
+++ b/src/full-codegen.cc
@@ -452,7 +452,7 @@ void FullCodeGenerator::CallLoadIC(ContextualMode mode, TypeFeedbackId id) {
void FullCodeGenerator::CallStoreIC(ContextualMode mode, TypeFeedbackId id) {
- Handle<Code> ic = StoreIC::initialize_stub(isolate(), strict_mode(), mode);
mvstanton 2014/01/17 09:47:51 In a follow-on CL I could eliminate the mode argum
+ Handle<Code> ic = StoreIC::initialize_stub(isolate(), strict_mode());
CallIC(ic, mode, id);
}
« src/code-stubs.h ('K') | « src/disassembler.cc ('k') | src/ia32/ic-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698