| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 7ec32463f79441d341e6206b1e5fa6a4544c6a07..ff9fd5c1d26ba24a70ad694af1615452de73b4fc 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -13918,7 +13918,7 @@ void Code::SetStubCallTargetCodeAt(uword pc, const Code& code) const {
|
| }
|
|
|
| void Code::Disassemble(DisassemblyFormatter* formatter) const {
|
| -#if !defined(PRODUCT) && !defined(DART_PRECOMPILED_RUNTIME)
|
| +#ifndef PRODUCT
|
| if (!FLAG_support_disassembler) {
|
| return;
|
| }
|
| @@ -14007,7 +14007,6 @@ RawCode* Code::New(intptr_t pointer_offsets_length) {
|
| return result.raw();
|
| }
|
|
|
| -#if !defined(DART_PRECOMPILED_RUNTIME)
|
| RawCode* Code::FinalizeCode(const char* name,
|
| Assembler* assembler,
|
| bool optimized) {
|
| @@ -14108,7 +14107,6 @@ RawCode* Code::FinalizeCode(const Function& function,
|
| #endif // !PRODUCT
|
| return FinalizeCode("", assembler, optimized);
|
| }
|
| -#endif // !defined(DART_PRECOMPILED_RUNTIME)
|
|
|
| bool Code::SlowFindRawCodeVisitor::FindObject(RawObject* raw_obj) const {
|
| return RawCode::ContainsPC(raw_obj, pc_);
|
|
|