//===--- AMDGPUMCKernelDescriptor.h ---------------------------*- 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 /// AMDHSA kernel descriptor MCExpr struct for use in MC layer. Uses /// AMDHSAKernelDescriptor.h for sizes and constants. /// // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPUMCKERNELDESCRIPTOR_H #define LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPUMCKERNELDESCRIPTOR_H #include "llvm/Support/AMDHSAKernelDescriptor.h" namespace llvm { class MCExpr; class MCContext; class MCSubtargetInfo; namespace AMDGPU { struct MCKernelDescriptor { … }; } // end namespace AMDGPU } // end namespace llvm #endif // LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPUMCKERNELDESCRIPTOR_H