blob: ef805bbab5be39197ed84d710016caf29319d48c [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
14#ifndef MSP430TARGETASMINFO_H
15#define MSP430TARGETASMINFO_H
16
Rafael Espindola43c4e242013-10-16 01:34:32 +000017#include "llvm/MC/MCAsmInfoELF.h"
Anton Korobeynikov10138002009-05-03 12:57:15 +000018
19namespace llvm {
Craig Topper1fcf5bc2012-03-27 07:54:11 +000020 class StringRef;
Benjamin Kramer92d89982010-07-14 22:38:02 +000021
Rafael Espindola43c4e242013-10-16 01:34:32 +000022 class MSP430MCAsmInfo : public MCAsmInfoELF {
Craig Topper6f9e59e2014-04-29 07:58:09 +000023 void anchor() override;
David Blaikiea379b1812011-12-20 02:50:00 +000024 public:
Rafael Espindola140a8372013-05-10 18:16:59 +000025 explicit MSP430MCAsmInfo(StringRef TT);
Anton Korobeynikov10138002009-05-03 12:57:15 +000026 };
27
28} // namespace llvm
29
30#endif