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

Unified Diff: src/ia32/full-codegen-ia32.cc

Issue 6685119: [Arguments] Remove the arguments shadow symbol. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/arguments
Patch Set: Created 9 years, 9 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/heap-profiler.h ('k') | src/objects.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ia32/full-codegen-ia32.cc
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc
index cdc1ea8d3c9a22667e8a457239e2bdfeb0145579..98080bb028cdbb1fdc40a04b8a62d712653f5de2 100644
--- a/src/ia32/full-codegen-ia32.cc
+++ b/src/ia32/full-codegen-ia32.cc
@@ -1135,7 +1135,7 @@ void FullCodeGenerator::EmitVariableLoad(Variable* var) {
// Three cases: non-this global variables, lookup slots, and all other
// types of slots.
Slot* slot = var->AsSlot();
- ASSERT((var->is_global() && !var->is_this()) == (slot != NULL));
+ ASSERT((var->is_global() && !var->is_this()) == (slot == NULL));
Kevin Millikin (Chromium) 2011/03/21 13:46:27 This was a silly typo, only present on the ia32 pl
if (slot == NULL) {
Comment cmnt(masm_, "Global variable");
« no previous file with comments | « src/heap-profiler.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698