Chromium Code Reviews| Index: src/compiler.cc |
| =================================================================== |
| --- src/compiler.cc (revision 3199) |
| +++ src/compiler.cc (working copy) |
| @@ -969,7 +969,9 @@ |
| void CodeGenSelector::VisitCompareOperation(CompareOperation* expr) { |
| - BAILOUT("CompareOperation"); |
| + ProcessExpression(expr->left(), Expression::kValue); |
| + CHECK_BAILOUT; |
| + ProcessExpression(expr->right(), Expression::kValue); |
| } |