| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index b188d6cf8842254ba95e03f8703cb4f91cdc09dc..fb7038c457506c3285a5705709373f460210bff1 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -4954,12 +4954,14 @@ class Code : public Object {
|
| ASSERT(0 <= len && len <= kMaxElements);
|
| return RoundedAllocationSize(sizeof(RawCode) + (len * kBytesPerElement));
|
| }
|
| +#if !defined(DART_PRECOMPILED_RUNTIME)
|
| static RawCode* FinalizeCode(const Function& function,
|
| Assembler* assembler,
|
| bool optimized = false);
|
| static RawCode* FinalizeCode(const char* name,
|
| Assembler* assembler,
|
| bool optimized);
|
| +#endif
|
| static RawCode* LookupCode(uword pc);
|
| static RawCode* LookupCodeInVmIsolate(uword pc);
|
| static RawCode* FindCode(uword pc, int64_t timestamp);
|
|
|