| Index: src/x64/lithium-x64.h
|
| diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h
|
| index 17e74aa13614f6d8ae1c271ff5625ff757584dd8..655c6c64b92f83198346225c847c110c6578ec7f 100644
|
| --- a/src/x64/lithium-x64.h
|
| +++ b/src/x64/lithium-x64.h
|
| @@ -152,7 +152,6 @@ class LCodeGen;
|
| V(Parameter) \
|
| V(Power) \
|
| V(PushArgument) \
|
| - V(Random) \
|
| V(RegExpLiteral) \
|
| V(Return) \
|
| V(SeqStringGetChar) \
|
| @@ -1406,28 +1405,6 @@ class LPower V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LRandom V8_FINAL : public LTemplateInstruction<1, 1, 3> {
|
| - public:
|
| - LRandom(LOperand* global_object,
|
| - LOperand* scratch,
|
| - LOperand* scratch2,
|
| - LOperand* scratch3) {
|
| - inputs_[0] = global_object;
|
| - temps_[0] = scratch;
|
| - temps_[1] = scratch2;
|
| - temps_[2] = scratch3;
|
| - }
|
| -
|
| - LOperand* global_object() { return inputs_[0]; }
|
| - LOperand* scratch() const { return temps_[0]; }
|
| - LOperand* scratch2() const { return temps_[1]; }
|
| - LOperand* scratch3() const { return temps_[2]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(Random, "random")
|
| - DECLARE_HYDROGEN_ACCESSOR(Random)
|
| -};
|
| -
|
| -
|
| class LArithmeticD V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LArithmeticD(Token::Value op, LOperand* left, LOperand* right)
|
|
|