2013-05-06 16:15:19 +00:00
|
|
|
//====-- SystemZMCAsmInfo.h - SystemZ asm properties -----------*- C++ -*--===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SystemZTARGETASMINFO_H
|
|
|
|
#define SystemZTARGETASMINFO_H
|
|
|
|
|
2013-10-16 01:34:32 +00:00
|
|
|
#include "llvm/MC/MCAsmInfoELF.h"
|
2013-05-06 16:15:19 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class StringRef;
|
|
|
|
|
2013-10-16 01:34:32 +00:00
|
|
|
class SystemZMCAsmInfo : public MCAsmInfoELF {
|
2013-05-06 16:15:19 +00:00
|
|
|
public:
|
2013-05-10 18:16:59 +00:00
|
|
|
explicit SystemZMCAsmInfo(StringRef TT);
|
2013-05-06 16:15:19 +00:00
|
|
|
|
|
|
|
// Override MCAsmInfo;
|
2014-03-06 12:03:36 +00:00
|
|
|
const MCSection *getNonexecutableStackSection(MCContext &Ctx) const override;
|
2013-05-06 16:15:19 +00:00
|
|
|
};
|
|
|
|
|
2014-03-06 10:38:30 +00:00
|
|
|
} // end namespace llvm
|
2013-05-06 16:15:19 +00:00
|
|
|
|
|
|
|
#endif
|