Chris Lattner | 621c44d | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 1 | //====-- SystemZMCAsmInfo.h - SystemZ asm properties -----------*- C++ -*--===// |
Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +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 | // |
Chris Lattner | 621c44d | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 10 | // This file contains the declaration of the SystemZMCAsmInfo class. |
Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef SystemZTARGETASMINFO_H |
| 15 | #define SystemZTARGETASMINFO_H |
| 16 | |
Chris Lattner | 621c44d | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCAsmInfo.h" |
Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 18 | |
| 19 | namespace llvm { |
Chris Lattner | d88f9fd | 2009-08-12 07:22:17 +0000 | [diff] [blame] | 20 | class Target; |
| 21 | class StringRef; |
Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 22 | |
Chris Lattner | 621c44d | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 23 | struct SystemZMCAsmInfo : public MCAsmInfo { |
| 24 | explicit SystemZMCAsmInfo(const Target &T, const StringRef &TT); |
Chris Lattner | 2dc6ddd | 2010-01-23 07:21:06 +0000 | [diff] [blame^] | 25 | virtual MCSection *getNonexecutableStackSection(MCContext &Ctx) const; |
Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 26 | }; |
Chris Lattner | 2dc6ddd | 2010-01-23 07:21:06 +0000 | [diff] [blame^] | 27 | |
Anton Korobeynikov | 32b7d5b | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 28 | } // namespace llvm |
| 29 | |
| 30 | #endif |