1234353Sdim//===-- MSP430MCAsmInfo.h - MSP430 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 MSP430MCAsmInfo class.
11224133Sdim//
12224133Sdim//===----------------------------------------------------------------------===//
13224133Sdim
14280031Sdim#ifndef LLVM_LIB_TARGET_MSP430_MCTARGETDESC_MSP430MCASMINFO_H
15280031Sdim#define LLVM_LIB_TARGET_MSP430_MCTARGETDESC_MSP430MCASMINFO_H
16224133Sdim
17261991Sdim#include "llvm/MC/MCAsmInfoELF.h"
18224133Sdim
19224133Sdimnamespace llvm {
20296417Sdimclass Triple;
21224133Sdim
22296417Sdimclass MSP430MCAsmInfo : public MCAsmInfoELF {
23296417Sdim  void anchor() override;
24224133Sdim
25296417Sdimpublic:
26296417Sdim  explicit MSP430MCAsmInfo(const Triple &TT);
27296417Sdim};
28296417Sdim
29224133Sdim} // namespace llvm
30224133Sdim
31224133Sdim#endif
32