 Chromium Code Reviews
 Chromium Code Reviews Issue 3170004:
  Minor change to for-in...  (Closed) 
  Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
    
  
    Issue 3170004:
  Minor change to for-in...  (Closed) 
  Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/| Index: src/ia32/codegen-ia32.cc | 
| =================================================================== | 
| --- src/ia32/codegen-ia32.cc (revision 5238) | 
| +++ src/ia32/codegen-ia32.cc (working copy) | 
| @@ -4610,7 +4610,7 @@ | 
| __ mov(ebx, Operand(eax)); | 
| // If the property has been removed while iterating, we just skip it. | 
| - __ cmp(ebx, Factory::null_value()); | 
| + __ test(ebx, Operand(ebx)); | 
| node->continue_target()->Branch(equal); | 
| end_del_check.Bind(); |