| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index 490b7805744229e6e02323cf907f9dc947154a26..596b16ea36e5fcd6fb99307d2f5ec49a7600e754 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -2045,13 +2045,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")
|
| };
|
|
|