| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index 2c71b635982c84d6eebcd5ef094d74e82cc85746..212a49683cdad727da05da04146c00228301f5ee 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -2068,13 +2068,15 @@ class LNumberTagI: public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LNumberTagU: public LTemplateInstruction<1, 1, 0> {
|
| +class LNumberTagU: public LTemplateInstruction<1, 1, 1> {
|
| public:
|
| - explicit LNumberTagU(LOperand* value) {
|
| + LNumberTagU(LOperand* value, LOperand* temp) {
|
| inputs_[0] = value;
|
| + temps_[0] = temp;
|
| }
|
|
|
| LOperand* value() { return inputs_[0]; }
|
| + LOperand* temp() { return temps_[0]; }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(NumberTagU, "number-tag-u")
|
| };
|
|
|