Index: src/arm/lithium-codegen-arm.cc |
diff --git a/src/arm/lithium-codegen-arm.cc b/src/arm/lithium-codegen-arm.cc |
index cf76a086720a7282487f2d59ddd09f6938c79759..2be33bad779a03430b13491448d7b5d98bb910c2 100644 |
--- a/src/arm/lithium-codegen-arm.cc |
+++ b/src/arm/lithium-codegen-arm.cc |
@@ -162,7 +162,8 @@ bool LCodeGen::GeneratePrologue() { |
// The following three instructions must remain together and unmodified |
// for code aging to work properly. |
__ stm(db_w, sp, r1.bit() | cp.bit() | fp.bit() | lr.bit()); |
- __ nop(ip.code()); |
+ // Pre-age code objects on low memory devices. |
+ __ nop(kPreAgeCodeNopType); |
// Adjust FP to point to saved FP. |
__ add(fp, sp, Operand(2 * kPointerSize)); |
} |