31 lines · c
1//===----- ABIInfo.h - ABI information access & encapsulation ---*- C++ -*-===//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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_CLANG_LIB_CIR_ABIINFO_H10#define LLVM_CLANG_LIB_CIR_ABIINFO_H11 12namespace clang::CIRGen {13 14class CIRGenFunctionInfo;15class CIRGenTypes;16 17class ABIInfo {18 ABIInfo() = delete;19 20public:21 CIRGenTypes &cgt;22 23 ABIInfo(CIRGenTypes &cgt) : cgt(cgt) {}24 25 virtual ~ABIInfo();26};27 28} // namespace clang::CIRGen29 30#endif // LLVM_CLANG_LIB_CIR_ABIINFO_H31