| Index: src/ia32/lithium-codegen-ia32.cc | 
| diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc | 
| index a9e1f5ae8ceb1a1a733a9bd15217908abe20c307..8adc25c6394de7e84b4025fc570b49b750cd3485 100644 | 
| --- a/src/ia32/lithium-codegen-ia32.cc | 
| +++ b/src/ia32/lithium-codegen-ia32.cc | 
| @@ -2503,6 +2503,10 @@ Condition LCodeGen::TokenToCondition(Token::Value op, bool is_unsigned) { | 
| case Token::EQ_STRICT: | 
| cond = equal; | 
| break; | 
| +    case Token::NE: | 
| +    case Token::NE_STRICT: | 
| +      cond = not_equal; | 
| +      break; | 
| case Token::LT: | 
| cond = is_unsigned ? below : less; | 
| break; | 
|  |