| Index: src/arm/full-codegen-arm.cc
|
| diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc
|
| index 40faedda2f049df4e391293490e61cf3d9d9a074..a6f48a5d44466ac2e3f00564eff1b88989e7e8cf 100644
|
| --- a/src/arm/full-codegen-arm.cc
|
| +++ b/src/arm/full-codegen-arm.cc
|
| @@ -3444,9 +3444,9 @@ void FullCodeGenerator::EmitOneByteSeqStringSetChar(CallRuntime* expr) {
|
| Register index = r1;
|
| Register value = r2;
|
|
|
| - VisitForStackValue(args->at(1)); // index
|
| - VisitForStackValue(args->at(2)); // value
|
| - VisitForAccumulatorValue(args->at(0)); // string
|
| + VisitForStackValue(args->at(0)); // index
|
| + VisitForStackValue(args->at(1)); // value
|
| + VisitForAccumulatorValue(args->at(2)); // string
|
| __ Pop(index, value);
|
|
|
| if (FLAG_debug_code) {
|
| @@ -3477,9 +3477,9 @@ void FullCodeGenerator::EmitTwoByteSeqStringSetChar(CallRuntime* expr) {
|
| Register index = r1;
|
| Register value = r2;
|
|
|
| - VisitForStackValue(args->at(1)); // index
|
| - VisitForStackValue(args->at(2)); // value
|
| - VisitForAccumulatorValue(args->at(0)); // string
|
| + VisitForStackValue(args->at(0)); // index
|
| + VisitForStackValue(args->at(1)); // value
|
| + VisitForAccumulatorValue(args->at(2)); // string
|
| __ Pop(index, value);
|
|
|
| if (FLAG_debug_code) {
|
|
|