Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index 9c76901fe001735e26bd56eb0af9828557fcbf12..67a3a9e072e696cbb5b4916b23e5dd790e92221d 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -1791,11 +1791,11 @@ void FullCodeGenerator::VisitAssignment(Assignment* expr) { |
break; |
case NAMED_PROPERTY: |
EmitNamedPropertyLoad(property); |
- PrepareForBailoutForId(expr->CompoundLoadId(), TOS_REG); |
+ PrepareForBailoutForId(property->LoadId(), TOS_REG); |
break; |
case KEYED_PROPERTY: |
EmitKeyedPropertyLoad(property); |
- PrepareForBailoutForId(expr->CompoundLoadId(), TOS_REG); |
+ PrepareForBailoutForId(property->LoadId(), TOS_REG); |
break; |
} |
} |
@@ -2216,7 +2216,7 @@ void FullCodeGenerator::VisitProperty(Property* expr) { |
VisitForAccumulatorValue(expr->obj()); |
__ mov(edx, result_register()); |
EmitNamedPropertyLoad(expr); |
- PrepareForBailoutForId(expr->ReturnId(), TOS_REG); |
+ PrepareForBailoutForId(expr->LoadId(), TOS_REG); |
context()->Plug(eax); |
} else { |
VisitForStackValue(expr->obj()); |
@@ -4033,7 +4033,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
if (assign_type == VARIABLE) { |
PrepareForBailout(expr->expression(), TOS_REG); |
} else { |
- PrepareForBailoutForId(expr->CountId(), TOS_REG); |
+ PrepareForBailoutForId(prop->LoadId(), TOS_REG); |
} |
// Call ToNumber only if operand is not a smi. |