Index: src/hydrogen-instructions.cc |
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc |
index 84949c09aa1df1b3038f20d6ab2a8c6a45e267ae..e816471ce604561601f90dfd08f41e25ed3d7495 100644 |
--- a/src/hydrogen-instructions.cc |
+++ b/src/hydrogen-instructions.cc |
@@ -3930,8 +3930,7 @@ HInstruction* HMathMinMax::New( |
HInstruction* HMod::New(Zone* zone, |
HValue* context, |
HValue* left, |
- HValue* right, |
- Maybe<int> fixed_right_arg) { |
+ HValue* right) { |
if (FLAG_fold_constants && left->IsConstant() && right->IsConstant()) { |
HConstant* c_left = HConstant::cast(left); |
HConstant* c_right = HConstant::cast(right); |
@@ -3950,7 +3949,7 @@ HInstruction* HMod::New(Zone* zone, |
} |
} |
} |
- return new(zone) HMod(context, left, right, fixed_right_arg); |
+ return new(zone) HMod(context, left, right); |
} |