1234353Sdim//===-- XCoreMCAsmInfo.h - XCore asm properties ----------------*- C++ -*--===//
2224133Sdim//
3224133Sdim//                     The LLVM Compiler Infrastructure
4224133Sdim//
5224133Sdim// This file is distributed under the University of Illinois Open Source
6224133Sdim// License. See LICENSE.TXT for details.
7224133Sdim//
8224133Sdim//===----------------------------------------------------------------------===//
9224133Sdim//
10224133Sdim// This file contains the declaration of the XCoreMCAsmInfo class.
11224133Sdim//
12224133Sdim//===----------------------------------------------------------------------===//
13224133Sdim
14280031Sdim#ifndef LLVM_LIB_TARGET_XCORE_MCTARGETDESC_XCOREMCASMINFO_H
15280031Sdim#define LLVM_LIB_TARGET_XCORE_MCTARGETDESC_XCOREMCASMINFO_H
16224133Sdim
17261991Sdim#include "llvm/MC/MCAsmInfoELF.h"
18224133Sdim
19224133Sdimnamespace llvm {
20288943Sdimclass Triple;
21224133Sdim
22288943Sdimclass XCoreMCAsmInfo : public MCAsmInfoELF {
23288943Sdim  void anchor() override;
24224133Sdim
25288943Sdimpublic:
26288943Sdim  explicit XCoreMCAsmInfo(const Triple &TT);
27288943Sdim};
28288943Sdim
29224133Sdim} // namespace llvm
30224133Sdim
31224133Sdim#endif
32