| Index: src/ia32/full-codegen-ia32.cc
|
| ===================================================================
|
| --- src/ia32/full-codegen-ia32.cc (revision 5328)
|
| +++ src/ia32/full-codegen-ia32.cc (working copy)
|
| @@ -2701,6 +2701,8 @@
|
|
|
| void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
| Comment cmnt(masm_, "[ CountOperation");
|
| + SetSourcePosition(expr->position());
|
| +
|
| // Invalid left-hand sides are rewritten to have a 'throw ReferenceError'
|
| // as the left-hand side.
|
| if (!expr->expression()->IsValidLeftHandSide()) {
|
| @@ -2981,6 +2983,7 @@
|
|
|
| void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) {
|
| Comment cmnt(masm_, "[ CompareOperation");
|
| + SetSourcePosition(expr->position());
|
|
|
| // Always perform the comparison for its control flow. Pack the result
|
| // into the expression's context after the comparison is performed.
|
|
|