| Index: src/objects.cc
|
| ===================================================================
|
| --- src/objects.cc (revision 3263)
|
| +++ src/objects.cc (working copy)
|
| @@ -4813,13 +4813,9 @@
|
|
|
|
|
| void SharedFunctionInfo::SetThisPropertyAssignmentsInfo(
|
| - bool only_this_property_assignments,
|
| bool only_simple_this_property_assignments,
|
| FixedArray* assignments) {
|
| set_compiler_hints(BooleanBit::set(compiler_hints(),
|
| - kHasOnlyThisPropertyAssignments,
|
| - only_this_property_assignments));
|
| - set_compiler_hints(BooleanBit::set(compiler_hints(),
|
| kHasOnlySimpleThisPropertyAssignments,
|
| only_simple_this_property_assignments));
|
| set_this_property_assignments(assignments);
|
| @@ -4829,9 +4825,6 @@
|
|
|
| void SharedFunctionInfo::ClearThisPropertyAssignmentsInfo() {
|
| set_compiler_hints(BooleanBit::set(compiler_hints(),
|
| - kHasOnlyThisPropertyAssignments,
|
| - false));
|
| - set_compiler_hints(BooleanBit::set(compiler_hints(),
|
| kHasOnlySimpleThisPropertyAssignments,
|
| false));
|
| set_this_property_assignments(Heap::undefined_value());
|
|
|