2017-03-27 20:25:26 +00:00
|
|
|
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
|
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "vm/malloc_hooks.h"
|
|
|
|
|
|
|
|
#include "vm/globals.h"
|
|
|
|
|
2017-04-21 20:34:38 +00:00
|
|
|
#if defined(HOST_ARCH_ARM)
|
2017-03-27 20:25:26 +00:00
|
|
|
|
|
|
|
namespace dart {
|
|
|
|
|
2020-11-13 22:10:54 +00:00
|
|
|
const intptr_t kSkipCount = 5;
|
2017-03-27 20:25:26 +00:00
|
|
|
|
|
|
|
} // namespace dart
|
|
|
|
|
2017-04-21 20:34:38 +00:00
|
|
|
#endif // defined(HOST_ARCH_ARM)
|