| Index: src/codegen-ia32.h
|
| diff --git a/src/codegen-ia32.h b/src/codegen-ia32.h
|
| index d2a31f56ef3228ea507cc105d7cbadecf4154df2..165f87717fc8a9c362330460d0e4ae882fdf397e 100644
|
| --- a/src/codegen-ia32.h
|
| +++ b/src/codegen-ia32.h
|
| @@ -431,8 +431,9 @@ class CodeGenerator: public AstVisitor {
|
| // control destination.
|
| void ToBoolean(ControlDestination* destination);
|
|
|
| - void GenericBinaryOperation(Token::Value op,
|
| - StaticType* type,
|
| + void GenericBinaryOperation(
|
| + Token::Value op,
|
| + SmiAnalysis* type,
|
| const OverwriteMode overwrite_mode = NO_OVERWRITE);
|
|
|
| // If possible, combine two constant smi values using op to produce
|
| @@ -445,7 +446,7 @@ class CodeGenerator: public AstVisitor {
|
| void ConstantSmiBinaryOperation(Token::Value op,
|
| Result* operand,
|
| Handle<Object> constant_operand,
|
| - StaticType* type,
|
| + SmiAnalysis* type,
|
| bool reversed,
|
| OverwriteMode overwrite_mode);
|
|
|
|
|