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 0f1e959adc7efd0cdacf20c38255032cdfa3cae0..cc0acadbf8d1166ad66f085886d497873dca8377 100644 |
--- a/src/compiler/x64/code-generator-x64.cc |
+++ b/src/compiler/x64/code-generator-x64.cc |
@@ -621,6 +621,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); |