Chromium Code Reviews| Index: src/arm/full-codegen-arm.cc |
| diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc |
| index 0bcb6a79ccd30154943cb7e363ca9fca50f3de6b..254089ab0bb37ea8194de8a977ab6dbf15bf77ca 100644 |
| --- a/src/arm/full-codegen-arm.cc |
| +++ b/src/arm/full-codegen-arm.cc |
| @@ -864,8 +864,8 @@ void FullCodeGenerator::VisitVariableDeclaration( |
| case Variable::LOCAL: |
| if (hole_init) { |
| Comment cmnt(masm_, "[ VariableDeclaration"); |
| - __ LoadRoot(ip, Heap::kTheHoleValueRootIndex); |
| - __ str(ip, StackOperand(variable)); |
| + __ LoadRoot(r0, Heap::kTheHoleValueRootIndex); |
| + __ str(r0, StackOperand(variable)); |
|
Dmitry Lomov (no reviews)
2015/03/28 10:41:18
Actually there are more usages of ip below this, s
Jarin
2015/03/30 05:54:50
Well, the test case is not really valid code (it r
|
| } |
| break; |