AMDGPUMCAsmInfo.h revision dce4a407a24b04eebc6a376f8e62b41aaa7b071f
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"
18namespace llvm {
19
20class StringRef;
21
22class AMDGPUMCAsmInfo : public MCAsmInfo {
23public:
24  explicit AMDGPUMCAsmInfo(StringRef &TT);
25  const MCSection* getNonexecutableStackSection(MCContext &CTX) const override;
26};
27} // namespace llvm
28#endif // AMDGPUMCASMINFO_H
29