| Index: src/ast.cc
|
| diff --git a/src/ast.cc b/src/ast.cc
|
| index 627e65a039dfec46f09cb92fbf340ee0f7513817..9b7a876593c4786ca0bf5d758ad57a12ae23e131 100644
|
| --- a/src/ast.cc
|
| +++ b/src/ast.cc
|
| @@ -1087,8 +1087,8 @@ void AstConstructionVisitor::VisitCallRuntime(CallRuntime* node) {
|
| add_flag(kDontInline);
|
| } else if (node->function()->intrinsic_type == Runtime::INLINE &&
|
| (node->name()->IsOneByteEqualTo(
|
| - STATIC_ASCII_VECTOR("_ArgumentsLength")) ||
|
| - node->name()->IsOneByteEqualTo(STATIC_ASCII_VECTOR("_Arguments")))) {
|
| + STATIC_ASCII_VECTOR("__ArgumentsLength")) ||
|
| + node->name()->IsOneByteEqualTo(STATIC_ASCII_VECTOR("__Arguments")))) {
|
| // Don't inline the %_ArgumentsLength or %_Arguments because their
|
| // implementation will not work. There is no stack frame to get them
|
| // from.
|
|
|