1//===-- PowerPC.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 "ABIPowerPC.h"
10#include "ABISysV_ppc.h"
11#include "ABISysV_ppc64.h"
12#include "lldb/Core/PluginManager.h"
13
14LLDB_PLUGIN_DEFINE(ABIPowerPC)
15
16void ABIPowerPC::Initialize() {
17 ABISysV_ppc::Initialize();
18 ABISysV_ppc64::Initialize();
19}
20
21void ABIPowerPC::Terminate() {
22 ABISysV_ppc::Terminate();
23 ABISysV_ppc64::Terminate();
24}
25

source code of lldb/source/Plugins/ABI/PowerPC/ABIPowerPC.cpp