Index: src/x64/full-codegen-x64.cc |
diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc |
index 078c6df2042e978be512d0c70c219ba840fa72f8..b77231cc3c3bae4488345d546c38cd914bf57d4a 100644 |
--- a/src/x64/full-codegen-x64.cc |
+++ b/src/x64/full-codegen-x64.cc |
@@ -3693,7 +3693,9 @@ void FullCodeGenerator::EmitRegExpConstructResult(CallRuntime* expr) { |
ASSERT(args->length() == 3); |
VisitForStackValue(args->at(0)); |
VisitForStackValue(args->at(1)); |
- VisitForStackValue(args->at(2)); |
+ VisitForAccumulatorValue(args->at(2)); |
+ __ pop(rbx); |
+ __ pop(rcx); |
__ CallStub(&stub); |
context()->Plug(rax); |
} |