| Index: runtime/vm/assembler_arm64.h
|
| diff --git a/runtime/vm/assembler_arm64.h b/runtime/vm/assembler_arm64.h
|
| index 32da483f4f8e341ae2c3fddd7d6a52ae2b3de494..a4e55bbe9accad68f25d620eb58a9acca6e488c8 100644
|
| --- a/runtime/vm/assembler_arm64.h
|
| +++ b/runtime/vm/assembler_arm64.h
|
| @@ -1301,11 +1301,11 @@ class Assembler : public ValueObject {
|
| // Object pool, loading from pool, etc.
|
| void LoadPoolPointer(Register pp);
|
|
|
| - bool allow_constant_pool() const {
|
| - return allow_constant_pool_;
|
| + bool constant_pool_allowed() const {
|
| + return constant_pool_allowed_;
|
| }
|
| - void set_allow_constant_pool(bool b) {
|
| - allow_constant_pool_ = b;
|
| + void set_constant_pool_allowed(bool b) {
|
| + constant_pool_allowed_ = b;
|
| }
|
|
|
| void LoadWordFromPoolOffset(Register dst, Register pp, uint32_t offset);
|
| @@ -1452,7 +1452,7 @@ class Assembler : public ValueObject {
|
|
|
| GrowableArray<CodeComment*> comments_;
|
|
|
| - bool allow_constant_pool_;
|
| + bool constant_pool_allowed_;
|
|
|
| void LoadObjectHelper(Register dst,
|
| const Object& obj,
|
|
|