6e3ef8b9e6
Remove some architecture limitations. TEST=ci Change-Id: I9703729d3e871687cd4951ec40d3d09ae579871f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/247864 Reviewed-by: Alexander Aprelev <aam@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com> Reviewed-by: William Hesse <whesse@google.com>
18 lines
474 B
C++
18 lines
474 B
C++
// Copyright (c) 2022, 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_RISCV32) || defined(HOST_ARCH_RISCV64)
|
|
|
|
namespace dart {
|
|
|
|
const intptr_t kSkipCount = 5;
|
|
|
|
} // namespace dart
|
|
|
|
#endif // defined(HOST_ARCH_RISCV32) || defined(HOST_ARCH_RISCV64)
|