| Index: src/arm/full-codegen-arm.cc
|
| ===================================================================
|
| --- src/arm/full-codegen-arm.cc (revision 5316)
|
| +++ src/arm/full-codegen-arm.cc (working copy)
|
| @@ -2536,6 +2536,14 @@
|
| }
|
|
|
|
|
| +void FullCodeGenerator::EmitRegExpCloneResult(ZoneList<Expression*>* args) {
|
| + ASSERT(args->length() == 1);
|
| + VisitForValue(args->at(0), kStack);
|
| + __ CallRuntime(Runtime::kRegExpConstructResult, 1);
|
| + Apply(context_, r0);
|
| +}
|
| +
|
| +
|
| void FullCodeGenerator::EmitSwapElements(ZoneList<Expression*>* args) {
|
| ASSERT(args->length() == 3);
|
| VisitForValue(args->at(0), kStack);
|
|
|