1251607Sdim//====-- SystemZMCAsmInfo.h - SystemZ asm properties -----------*- C++ -*--===//
2251607Sdim//
3353358Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4353358Sdim// See https://llvm.org/LICENSE.txt for license information.
5353358Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6251607Sdim//
7251607Sdim//===----------------------------------------------------------------------===//
8251607Sdim
9280031Sdim#ifndef LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZMCASMINFO_H
10280031Sdim#define LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZMCASMINFO_H
11251607Sdim
12261991Sdim#include "llvm/MC/MCAsmInfoELF.h"
13251607Sdim#include "llvm/Support/Compiler.h"
14251607Sdim
15251607Sdimnamespace llvm {
16288943Sdimclass Triple;
17251607Sdim
18261991Sdimclass SystemZMCAsmInfo : public MCAsmInfoELF {
19251607Sdimpublic:
20288943Sdim  explicit SystemZMCAsmInfo(const Triple &TT);
21251607Sdim};
22251607Sdim
23276479Sdim} // end namespace llvm
24251607Sdim
25251607Sdim#endif
26