1 //===-- MCTargetDesc/AMDGPUMCAsmInfo.h - AMDGPU MCAsm Interface ----------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 /// \file 11 // 12 //===----------------------------------------------------------------------===// 13 14 #ifndef AMDGPUMCASMINFO_H 15 #define AMDGPUMCASMINFO_H 16 17 #include "llvm/MC/MCAsmInfo.h" 18 namespace llvm { 19 20 class StringRef; 21 22 class AMDGPUMCAsmInfo : public MCAsmInfo { 23 public: 24 explicit AMDGPUMCAsmInfo(StringRef &TT); 25 const MCSection* getNonexecutableStackSection(MCContext &CTX) const override; 26 }; 27 } // namespace llvm 28 #endif // AMDGPUMCASMINFO_H 29