blob: a6a27e2f4b6d4caa62db5af601ba47ab69124bf7 [file] [log] [blame]
Chris Lattneraf76e592009-08-22 20:48:53 +00001//====-- SystemZMCAsmInfo.h - SystemZ asm properties -----------*- C++ -*--===//
Anton Korobeynikov4403b932009-07-16 13:27:25 +00002//
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 Lattneraf76e592009-08-22 20:48:53 +000010// This file contains the declaration of the SystemZMCAsmInfo class.
Anton Korobeynikov4403b932009-07-16 13:27:25 +000011//
12//===----------------------------------------------------------------------===//
13
14#ifndef SystemZTARGETASMINFO_H
15#define SystemZTARGETASMINFO_H
16
Chris Lattneraf76e592009-08-22 20:48:53 +000017#include "llvm/MC/MCAsmInfo.h"
Anton Korobeynikov4403b932009-07-16 13:27:25 +000018
19namespace llvm {
Chris Lattnera7ac47c2009-08-12 07:22:17 +000020 class Target;
21 class StringRef;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000022
Chris Lattneraf76e592009-08-22 20:48:53 +000023 struct SystemZMCAsmInfo : public MCAsmInfo {
Benjamin Kramer38e59892010-07-14 22:38:02 +000024 explicit SystemZMCAsmInfo(const Target &T, StringRef TT);
Chris Lattner74aae472010-04-08 21:26:26 +000025 virtual const MCSection *getNonexecutableStackSection(MCContext &Ctx) const;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000026 };
Chris Lattnerf9f93e42010-01-23 07:21:06 +000027
Anton Korobeynikov4403b932009-07-16 13:27:25 +000028} // namespace llvm
29
30#endif