| Index: src/hydrogen-instructions.cc
|
| diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
|
| index f89665ef00226f20314232a0d1685d8e09002c8f..2f8b6e263dde9cb8817f7b0f3c3a47619e776cdb 100644
|
| --- a/src/hydrogen-instructions.cc
|
| +++ b/src/hydrogen-instructions.cc
|
| @@ -529,7 +529,7 @@ void HInstruction::Verify() {
|
| HCall::HCall(int count) : arguments_(Zone::NewArray<HValue*>(count), count) {
|
| for (int i = 0; i < count; ++i) arguments_[i] = NULL;
|
| set_representation(Representation::Tagged());
|
| - SetFlagMask(AllSideEffects());
|
| + SetAllSideEffects();
|
| }
|
|
|
|
|
| @@ -1124,10 +1124,10 @@ void HCompare::PrintDataTo(StringStream* stream) const {
|
| void HCompare::SetInputRepresentation(Representation r) {
|
| input_representation_ = r;
|
| if (r.IsTagged()) {
|
| - SetFlagMask(AllSideEffects());
|
| + SetAllSideEffects();
|
| ClearFlag(kUseGVN);
|
| } else {
|
| - ClearFlagMask(AllSideEffects());
|
| + ClearAllSideEffects();
|
| SetFlag(kUseGVN);
|
| }
|
| }
|
|
|