| Index: src/compiler/x64/code-generator-x64.cc
|
| diff --git a/src/compiler/x64/code-generator-x64.cc b/src/compiler/x64/code-generator-x64.cc
|
| index b4d200b39d8056c9b05a83eb7a7a110a94caed0a..13e482d3c1e78df071425e2580e48e5b4d89613e 100644
|
| --- a/src/compiler/x64/code-generator-x64.cc
|
| +++ b/src/compiler/x64/code-generator-x64.cc
|
| @@ -626,6 +626,9 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| case kArchStackPointer:
|
| __ movq(i.OutputRegister(), rsp);
|
| break;
|
| + case kArchFramePointer:
|
| + __ movq(i.OutputRegister(), rbp);
|
| + break;
|
| case kArchTruncateDoubleToI: {
|
| auto result = i.OutputRegister();
|
| auto input = i.InputDoubleRegister(0);
|
|
|