LLVM API Documentation

SystemZMCAsmInfo.h
Go to the documentation of this file.
00001 //====-- SystemZMCAsmInfo.h - SystemZ asm properties -----------*- C++ -*--===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 
00010 #ifndef LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZMCASMINFO_H
00011 #define LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZMCASMINFO_H
00012 
00013 #include "llvm/MC/MCAsmInfoELF.h"
00014 #include "llvm/Support/Compiler.h"
00015 
00016 namespace llvm {
00017 class StringRef;
00018 
00019 class SystemZMCAsmInfo : public MCAsmInfoELF {
00020 public:
00021   explicit SystemZMCAsmInfo(StringRef TT);
00022 
00023   // Override MCAsmInfo;
00024   const MCSection *getNonexecutableStackSection(MCContext &Ctx) const override;
00025 };
00026 
00027 } // end namespace llvm
00028 
00029 #endif