| Index: src/x64/lithium-codegen-x64.cc
|
| diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc
|
| index 5584e39c5f1e93245d4f50e7c2c53be5d593d261..49170e84869576bd812480115acfe05ab1263fa4 100644
|
| --- a/src/x64/lithium-codegen-x64.cc
|
| +++ b/src/x64/lithium-codegen-x64.cc
|
| @@ -2888,6 +2888,12 @@ void LCodeGen::DoLoadFunctionPrototype(LLoadFunctionPrototype* instr) {
|
| }
|
|
|
|
|
| +void LCodeGen::DoLoadRoot(LLoadRoot* instr) {
|
| + Register result = ToRegister(instr->result());
|
| + __ LoadRoot(result, instr->index());
|
| +}
|
| +
|
| +
|
| void LCodeGen::DoLoadExternalArrayPointer(
|
| LLoadExternalArrayPointer* instr) {
|
| Register result = ToRegister(instr->result());
|
|
|