| Index: src/crankshaft/ppc/lithium-codegen-ppc.cc
|
| diff --git a/src/crankshaft/ppc/lithium-codegen-ppc.cc b/src/crankshaft/ppc/lithium-codegen-ppc.cc
|
| index 1ccda245281b07058c372b360d06c0ee107ec317..056c93a820f0ff777853b6fd9b5148fab9a9f17b 100644
|
| --- a/src/crankshaft/ppc/lithium-codegen-ppc.cc
|
| +++ b/src/crankshaft/ppc/lithium-codegen-ppc.cc
|
| @@ -3816,7 +3816,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());
|
| }
|
|
|