LLVM API Documentation
00001 //===-- MCTargetDesc/AMDGPUMCAsmInfo.h - AMDGPU MCAsm Interface ----------===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 /// \file 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #ifndef LLVM_LIB_TARGET_R600_MCTARGETDESC_AMDGPUMCASMINFO_H 00015 #define LLVM_LIB_TARGET_R600_MCTARGETDESC_AMDGPUMCASMINFO_H 00016 00017 #include "llvm/MC/MCAsmInfo.h" 00018 namespace llvm { 00019 00020 class StringRef; 00021 00022 class AMDGPUMCAsmInfo : public MCAsmInfo { 00023 public: 00024 explicit AMDGPUMCAsmInfo(StringRef &TT); 00025 const MCSection* getNonexecutableStackSection(MCContext &CTX) const override; 00026 }; 00027 } // namespace llvm 00028 #endif