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
14224133Sdim#ifndef XCORETARGETASMINFO_H
15224133Sdim#define XCORETARGETASMINFO_H
16224133Sdim
17263508Sdim#include "llvm/MC/MCAsmInfoELF.h"
18224133Sdim
19224133Sdimnamespace llvm {
20234353Sdim  class StringRef;
21224133Sdim  class Target;
22224133Sdim
23263508Sdim  class XCoreMCAsmInfo : public MCAsmInfoELF {
24234353Sdim    virtual void anchor();
25224133Sdim  public:
26263508Sdim    explicit XCoreMCAsmInfo(StringRef TT);
27224133Sdim  };
28224133Sdim
29224133Sdim} // namespace llvm
30224133Sdim
31224133Sdim#endif
32