| Index: src/arm/full-codegen-arm.cc
|
| diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc
|
| index 6654263989e82501ff86d2f1096061d4de82dd68..8dfa20fb527242937901a5cb4844922e4d27fe25 100644
|
| --- a/src/arm/full-codegen-arm.cc
|
| +++ b/src/arm/full-codegen-arm.cc
|
| @@ -69,6 +69,7 @@ class JumpPatchSite BASE_EMBEDDED {
|
| // the inlined smi code.
|
| void EmitJumpIfNotSmi(Register reg, Label* target) {
|
| ASSERT(!patch_site_.is_bound() && !info_emitted_);
|
| + Assembler::BlockConstPoolScope block_const_pool(masm_);
|
| __ bind(&patch_site_);
|
| __ cmp(reg, Operand(reg));
|
| // Don't use b(al, ...) as that might emit the constant pool right after the
|
| @@ -81,6 +82,7 @@ class JumpPatchSite BASE_EMBEDDED {
|
| // the inlined smi code.
|
| void EmitJumpIfSmi(Register reg, Label* target) {
|
| ASSERT(!patch_site_.is_bound() && !info_emitted_);
|
| + Assembler::BlockConstPoolScope block_const_pool(masm_);
|
| __ bind(&patch_site_);
|
| __ cmp(reg, Operand(reg));
|
| __ b(ne, target); // Never taken before patched.
|
|
|