[C++20][modules] Fix std::initializer_list recognition if it's exported out of a...
[llvm-project.git] / lldb / source / Plugins / ABI / Mips / ABIMips.cpp
blob16ef1faf9d9d6b418dd03904822369d1cfe25a7c
1 //===-- Mips.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 //===----------------------------------------------------------------------===//
9 #include "ABIMips.h"
10 #include "ABISysV_mips.h"
11 #include "ABISysV_mips64.h"
12 #include "lldb/Core/PluginManager.h"
14 LLDB_PLUGIN_DEFINE(ABIMips)
16 void ABIMips::Initialize() {
17 ABISysV_mips::Initialize();
18 ABISysV_mips64::Initialize();
21 void ABIMips::Terminate() {
22 ABISysV_mips::Terminate();
23 ABISysV_mips64::Terminate();