blob: 183dee36a047758ed80e6db34d733d000fac2bd3 [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- MSP430MCAsmInfo.h - MSP430 asm properties --------------*- C++ -*--===//
Anton Korobeynikov10138002009-05-03 12:57:15 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner7b26fce2009-08-22 20:48:53 +000010// This file contains the declaration of the MSP430MCAsmInfo class.
Anton Korobeynikov10138002009-05-03 12:57:15 +000011//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_TARGET_MSP430_MCTARGETDESC_MSP430MCASMINFO_H
15#define LLVM_LIB_TARGET_MSP430_MCTARGETDESC_MSP430MCASMINFO_H
Anton Korobeynikov10138002009-05-03 12:57:15 +000016
Rafael Espindola43c4e242013-10-16 01:34:32 +000017#include "llvm/MC/MCAsmInfoELF.h"
Anton Korobeynikov10138002009-05-03 12:57:15 +000018
19namespace llvm {
Daniel Sanders50f17232015-09-15 16:17:27 +000020class Triple;
Benjamin Kramer92d89982010-07-14 22:38:02 +000021
Daniel Sandersc8cd6e92015-09-15 12:27:06 +000022class MSP430MCAsmInfo : public MCAsmInfoELF {
23 void anchor() override;
24
25public:
Daniel Sanders50f17232015-09-15 16:17:27 +000026 explicit MSP430MCAsmInfo(const Triple &TT);
Daniel Sandersc8cd6e92015-09-15 12:27:06 +000027};
Anton Korobeynikov10138002009-05-03 12:57:15 +000028
29} // namespace llvm
30
31#endif