Chromium Code Reviews| 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"); |