| Index: src/hydrogen.cc
|
| diff --git a/src/hydrogen.cc b/src/hydrogen.cc
|
| index 8df8f6ed43879298a9e19791a50a9e6297ec4132..6cfc960676d90e3a2734102c241e2469d2489841 100644
|
| --- a/src/hydrogen.cc
|
| +++ b/src/hydrogen.cc
|
| @@ -3356,7 +3356,7 @@ HOptimizedGraphBuilder::HOptimizedGraphBuilder(CompilationInfo* info)
|
| // This is not initialized in the initializer list because the
|
| // constructor for the initial state relies on function_state_ == NULL
|
| // to know it's the initial state.
|
| - function_state_= &initial_function_state_;
|
| + function_state_ = &initial_function_state_;
|
| InitializeAstVisitor(info->zone());
|
| if (FLAG_hydrogen_track_positions) {
|
| SetSourcePosition(info->shared_info()->start_position());
|
| @@ -10345,7 +10345,7 @@ bool HGraphBuilder::MatchRotateRight(HValue* left,
|
| !ShiftAmountsAllowReplaceByRotate(shr->right(), shl->right())) {
|
| return false;
|
| }
|
| - *operand= shr->left();
|
| + *operand = shr->left();
|
| *shift_amount = shr->right();
|
| return true;
|
| }
|
|
|