1// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4
5#ifndef RUNTIME_VM_TYPE_TESTING_STUBS_TEST_H_
6#define RUNTIME_VM_TYPE_TESTING_STUBS_TEST_H_
7
8#if defined(TARGET_ARCH_ARM64) || defined(TARGET_ARCH_ARM) || \
9 defined(TARGET_ARCH_X64)
10
11#include "include/dart_api.h"
12
13namespace dart {
14
15namespace compiler {
16class Assembler;
17}
18
19void GenerateInvokeTTSStub(compiler::Assembler* assembler);
20
21} // namespace dart
22
23#endif // defined(TARGET_ARCH_ARM64) || defined(TARGET_ARCH_ARM) || \
24 // defined(TARGET_ARCH_X64)
25
26#endif // RUNTIME_VM_TYPE_TESTING_STUBS_TEST_H_
27