blob: 800f89232063221a3fcc9e8977c6c9b1fada53fd [file] [log] [blame]
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001//====-- SystemZMCAsmInfo.h - SystemZ asm properties -----------*- C++ -*--===//
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
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000010#ifndef LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZMCASMINFO_H
11#define LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZMCASMINFO_H
Ulrich Weigand5f613df2013-05-06 16:15:19 +000012
Rafael Espindola43c4e242013-10-16 01:34:32 +000013#include "llvm/MC/MCAsmInfoELF.h"
Ulrich Weigand5f613df2013-05-06 16:15:19 +000014#include "llvm/Support/Compiler.h"
15
16namespace llvm {
Daniel Sanders50f17232015-09-15 16:17:27 +000017class Triple;
Ulrich Weigand5f613df2013-05-06 16:15:19 +000018
Rafael Espindola43c4e242013-10-16 01:34:32 +000019class SystemZMCAsmInfo : public MCAsmInfoELF {
Ulrich Weigand5f613df2013-05-06 16:15:19 +000020public:
Daniel Sanders50f17232015-09-15 16:17:27 +000021 explicit SystemZMCAsmInfo(const Triple &TT);
Ulrich Weigand5f613df2013-05-06 16:15:19 +000022};
23
Richard Sandifordc2312692014-03-06 10:38:30 +000024} // end namespace llvm
Ulrich Weigand5f613df2013-05-06 16:15:19 +000025
26#endif