1//===-- ARM.h -------------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "ABIARM.h"
10#include "ABIMacOSX_arm.h"
11#include "ABISysV_arm.h"
12#include "lldb/Core/PluginManager.h"
13
14LLDB_PLUGIN_DEFINE(ABIARM)
15
16void ABIARM::Initialize() {
17 ABISysV_arm::Initialize();
18 ABIMacOSX_arm::Initialize();
19}
20
21void ABIARM::Terminate() {
22 ABISysV_arm::Terminate();
23 ABIMacOSX_arm::Terminate();
24}
25

source code of lldb/source/Plugins/ABI/ARM/ABIARM.cpp