| Index: src/x64/lithium-x64.h
|
| diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h
|
| index e644c2d25acfe9456a68e4039abd4ac358568369..962000ad43bd2d63464f4bba3ca49da46fb2f0ec 100644
|
| --- a/src/x64/lithium-x64.h
|
| +++ b/src/x64/lithium-x64.h
|
| @@ -489,10 +489,6 @@ class LCallStub V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(CallStub, "call-stub")
|
| DECLARE_HYDROGEN_ACCESSOR(CallStub)
|
| -
|
| - TranscendentalCache::Type transcendental_type() {
|
| - return hydrogen()->transcendental_type();
|
| - }
|
| };
|
|
|
|
|
| @@ -2714,6 +2710,9 @@ class LChunkBuilder V8_FINAL BASE_EMBEDDED {
|
| // An input operand in a register that may be trashed.
|
| MUST_USE_RESULT LOperand* UseTempRegister(HValue* value);
|
|
|
| + // An input operand in a register that may be trashed or a constant operand.
|
| + MUST_USE_RESULT LOperand* UseTempRegisterOrConstant(HValue* value);
|
| +
|
| // An input operand in a register or stack slot.
|
| MUST_USE_RESULT LOperand* Use(HValue* value);
|
| MUST_USE_RESULT LOperand* UseAtStart(HValue* value);
|
|
|