| Index: src/ia32/lithium-codegen-ia32.h
|
| diff --git a/src/ia32/lithium-codegen-ia32.h b/src/ia32/lithium-codegen-ia32.h
|
| index fa5e88b033308bb991f59295d285cc1ae2a49e92..079595cba58dcebb2e91aab1cc6dd357c6f4e2b6 100644
|
| --- a/src/ia32/lithium-codegen-ia32.h
|
| +++ b/src/ia32/lithium-codegen-ia32.h
|
| @@ -148,9 +148,11 @@ class LCodeGen: public LCodeGenBase {
|
| void DoDeferredNumberTagD(LNumberTagD* instr);
|
|
|
| enum IntegerSignedness { SIGNED_INT32, UNSIGNED_INT32 };
|
| - void DoDeferredNumberTagI(LInstruction* instr,
|
| - LOperand* value,
|
| - IntegerSignedness signedness);
|
| + void DoDeferredNumberTagIU(LInstruction* instr,
|
| + LOperand* value,
|
| + LOperand* temp1,
|
| + LOperand* temp2,
|
| + IntegerSignedness signedness);
|
|
|
| void DoDeferredTaggedToI(LTaggedToI* instr, Label* done);
|
| void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr);
|
| @@ -177,9 +179,7 @@ class LCodeGen: public LCodeGenBase {
|
| #undef DECLARE_DO
|
|
|
| private:
|
| - StrictModeFlag strict_mode_flag() const {
|
| - return info()->is_classic_mode() ? kNonStrictMode : kStrictMode;
|
| - }
|
| + StrictMode strict_mode() const { return info()->strict_mode(); }
|
|
|
| Scope* scope() const { return scope_; }
|
|
|
|
|