Coverage Report

Created: 2023-09-30 09:22

/Users/buildslave/jenkins/workspace/coverage/llvm-project/lldb/source/Plugins/ABI/ARM/ABIARM.cpp
Line
Count
Source
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
14
LLDB_PLUGIN_DEFINE(ABIARM)
15
16
3.92k
void ABIARM::Initialize() {
17
3.92k
  ABISysV_arm::Initialize();
18
3.92k
  ABIMacOSX_arm::Initialize();
19
3.92k
}
20
21
3.92k
void ABIARM::Terminate() {
22
3.92k
  ABISysV_arm::Terminate();
23
3.92k
  ABIMacOSX_arm::Terminate();
24
3.92k
}