2009-08-22 20:48:53 +00:00
|
|
|
//====-- SystemZMCAsmInfo.h - SystemZ asm properties -----------*- C++ -*--===//
|
2009-07-16 13:27:25 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 20:48:53 +00:00
|
|
|
// This file contains the declaration of the SystemZMCAsmInfo class.
|
2009-07-16 13:27:25 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SystemZTARGETASMINFO_H
|
|
|
|
#define SystemZTARGETASMINFO_H
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2009-07-16 13:27:25 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-08-12 07:22:17 +00:00
|
|
|
class Target;
|
|
|
|
class StringRef;
|
2009-07-16 13:27:25 +00:00
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
struct SystemZMCAsmInfo : public MCAsmInfo {
|
|
|
|
explicit SystemZMCAsmInfo(const Target &T, const StringRef &TT);
|
2010-04-08 21:26:26 +00:00
|
|
|
virtual const MCSection *getNonexecutableStackSection(MCContext &Ctx) const;
|
2009-07-16 13:27:25 +00:00
|
|
|
};
|
2010-01-23 07:21:06 +00:00
|
|
|
|
2009-07-16 13:27:25 +00:00
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|