XCoreMCAsmInfo.h revision 280031
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 {
20234353Sdim  class StringRef;
21224133Sdim  class Target;
22224133Sdim
23261991Sdim  class XCoreMCAsmInfo : public MCAsmInfoELF {
24276479Sdim    void anchor() override;
25224133Sdim  public:
26261991Sdim    explicit XCoreMCAsmInfo(StringRef TT);
27224133Sdim  };
28224133Sdim
29224133Sdim} // namespace llvm
30224133Sdim
31224133Sdim#endif
32