| Index: runtime/vm/native_entry.h
|
| diff --git a/runtime/vm/native_entry.h b/runtime/vm/native_entry.h
|
| index 9557073c974a2959529eb22f77ceb9a2c921e82e..4be2cc3917da930051f115c7387bb5372525ad08 100644
|
| --- a/runtime/vm/native_entry.h
|
| +++ b/runtime/vm/native_entry.h
|
| @@ -118,8 +118,11 @@ class NativeEntry : public AllStatic {
|
| static void NativeCallWrapper(Dart_NativeArguments args,
|
| Dart_NativeFunction func);
|
|
|
| + // DBC does not support lazy native call linking.
|
| +#if !defined(TARGET_ARCH_DBC)
|
| static uword LinkNativeCallEntry();
|
| static void LinkNativeCall(Dart_NativeArguments args);
|
| +#endif
|
|
|
| private:
|
| static void NativeCallWrapperNoStackCheck(Dart_NativeArguments args,
|
|
|