| Index: src/arm/lithium-codegen-arm.cc
|
| ===================================================================
|
| --- src/arm/lithium-codegen-arm.cc (revision 6540)
|
| +++ src/arm/lithium-codegen-arm.cc (working copy)
|
| @@ -3450,6 +3450,13 @@
|
| }
|
|
|
|
|
| +void LCodeGen::DoToFastProperties(LToFastProperties* instr) {
|
| + ASSERT(ToRegister(instr->InputAt(0)).is(r0));
|
| + __ push(r0);
|
| + CallRuntime(Runtime::kToFastProperties, 1, instr);
|
| +}
|
| +
|
| +
|
| void LCodeGen::DoRegExpLiteral(LRegExpLiteral* instr) {
|
| Label materialized;
|
| // Registers will be used as follows:
|
|
|