1234285Sdim//===-- HexagonTargetAsmInfo.h - Hexagon asm properties --------*- C++ -*--===//
2234285Sdim//
3234285Sdim//                     The LLVM Compiler Infrastructure
4234285Sdim//
5234285Sdim// This file is distributed under the University of Illinois Open Source
6234285Sdim// License. See LICENSE.TXT for details.
7234285Sdim//
8234285Sdim//===----------------------------------------------------------------------===//
9234285Sdim//
10234285Sdim// This file contains the declaration of the HexagonMCAsmInfo class.
11234285Sdim//
12234285Sdim//===----------------------------------------------------------------------===//
13234285Sdim
14234285Sdim#ifndef HexagonMCASMINFO_H
15234285Sdim#define HexagonMCASMINFO_H
16234285Sdim
17234285Sdim#include "llvm/ADT/StringRef.h"
18263508Sdim#include "llvm/MC/MCAsmInfoELF.h"
19234285Sdim
20234285Sdimnamespace llvm {
21263508Sdim  class HexagonMCAsmInfo : public MCAsmInfoELF {
22263508Sdim    virtual void anchor();
23234285Sdim  public:
24263508Sdim    explicit HexagonMCAsmInfo(StringRef TT);
25234285Sdim  };
26234285Sdim
27234285Sdim} // namespace llvm
28234285Sdim
29234285Sdim#endif
30