| Index: src/crankshaft/arm/lithium-codegen-arm.cc
|
| diff --git a/src/crankshaft/arm/lithium-codegen-arm.cc b/src/crankshaft/arm/lithium-codegen-arm.cc
|
| index fac9e869f1d1f8769a048bc518649c567bd0f15a..e9d3f467735d4f65eeb64b27ec7903e3e86c22af 100644
|
| --- a/src/crankshaft/arm/lithium-codegen-arm.cc
|
| +++ b/src/crankshaft/arm/lithium-codegen-arm.cc
|
| @@ -3582,7 +3582,9 @@ void LCodeGen::PrepareForTailCall(const ParameterCount& actual,
|
| #endif
|
| if (FLAG_code_comments) {
|
| if (actual.is_reg()) {
|
| - Comment(";;; PrepareForTailCall, actual: %s {", actual.reg().ToString());
|
| + Comment(";;; PrepareForTailCall, actual: %s {",
|
| + RegisterConfiguration::Crankshaft()->GetGeneralRegisterName(
|
| + actual.reg().code()));
|
| } else {
|
| Comment(";;; PrepareForTailCall, actual: %d {", actual.immediate());
|
| }
|
|
|