diff options
Diffstat (limited to 'contrib/llvm-project/lldb/source/Plugins/ABI/Mips/ABIMips.cpp')
-rw-r--r-- | contrib/llvm-project/lldb/source/Plugins/ABI/Mips/ABIMips.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/ABIMips.cpp b/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/ABIMips.cpp new file mode 100644 index 000000000000..16ef1faf9d9d --- /dev/null +++ b/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/ABIMips.cpp @@ -0,0 +1,24 @@ +//===-- Mips.h ------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#include "ABIMips.h" +#include "ABISysV_mips.h" +#include "ABISysV_mips64.h" +#include "lldb/Core/PluginManager.h" + +LLDB_PLUGIN_DEFINE(ABIMips) + +void ABIMips::Initialize() { + ABISysV_mips::Initialize(); + ABISysV_mips64::Initialize(); +} + +void ABIMips::Terminate() { + ABISysV_mips::Terminate(); + ABISysV_mips64::Terminate(); +} |