| Index: src/x64/lithium-x64.cc
|
| diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc
|
| index 93ea6cf3bce7125addc8c96771b289999fc59a9e..009df374d36ad079d5ffebda0979aba3de7a7c97 100644
|
| --- a/src/x64/lithium-x64.cc
|
| +++ b/src/x64/lithium-x64.cc
|
| @@ -1842,7 +1842,9 @@ LInstruction* LChunkBuilder::DoClampToUint8(HClampToUint8* instr) {
|
|
|
|
|
| LInstruction* LChunkBuilder::DoReturn(HReturn* instr) {
|
| - return new(zone()) LReturn(UseFixed(instr->value(), rax));
|
| + LOperand* parameter_count = UseRegisterOrConstant(instr->parameter_count());
|
| + return new(zone()) LReturn(UseFixed(instr->value(), rax),
|
| + parameter_count);
|
| }
|
|
|
|
|
|
|