Matt Arsenault | 06a711d | 2014-09-30 01:05:27 +0000 | [diff] [blame^] | 1 | //===-- MCTargetDesc/AMDGPUMCAsmInfo.h - AMDGPU MCAsm Interface -*- C++ -*-===// |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 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 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 14 | #ifndef LLVM_LIB_TARGET_R600_MCTARGETDESC_AMDGPUMCASMINFO_H |
| 15 | #define LLVM_LIB_TARGET_R600_MCTARGETDESC_AMDGPUMCASMINFO_H |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 16 | |
| 17 | #include "llvm/MC/MCAsmInfo.h" |
| 18 | namespace llvm { |
| 19 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 20 | class StringRef; |
| 21 | |
| 22 | class AMDGPUMCAsmInfo : public MCAsmInfo { |
| 23 | public: |
Rafael Espindola | 86067ad | 2013-05-10 18:31:42 +0000 | [diff] [blame] | 24 | explicit AMDGPUMCAsmInfo(StringRef &TT); |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 25 | const MCSection* getNonexecutableStackSection(MCContext &CTX) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 26 | }; |
| 27 | } // namespace llvm |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 28 | #endif |