//===----- ABI.h - ABI related declarations ---------------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// /// /// \file /// Enums/classes describing ABI related information about constructors, /// destructors and thunks. /// //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_BASIC_ABI_H #define LLVM_CLANG_BASIC_ABI_H #include "llvm/Support/DataTypes.h" #include <cstring> namespace clang { /// C++ constructor types. enum CXXCtorType { … }; /// C++ destructor types. enum CXXDtorType { … }; } // end namespace clang #endif