mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 06:20:13 +00:00
b9c86f07dc
TEST=bots Bug: https://github.com/dart-lang/sdk/issues/43642 Change-Id: I7bc2b3b5231413967f9b1f608c957326ff6c6aaa Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/171680 Commit-Queue: Ryan Macnak <rmacnak@google.com> Reviewed-by: Alexander Aprelev <aam@google.com> Reviewed-by: Martin Kustermann <kustermann@google.com>
17 lines
410 B
C++
17 lines
410 B
C++
// 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"
|
|
|
|
#if defined(HOST_ARCH_ARM64)
|
|
|
|
namespace dart {
|
|
|
|
const intptr_t kSkipCount = 5;
|
|
|
|
} // namespace dart
|
|
|
|
#endif // defined(HOST_ARCH_ARM64)
|