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