blob: 17658f5719eedc14fdaefc0afd71b9b372d25192 [file] [log] [blame]
Chris Lattner7b26fce2009-08-22 20:48:53 +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
Benjamin Kramer92d89982010-07-14 22:38:02 +000017#include "llvm/ADT/StringRef.h"
Chris Lattner7b26fce2009-08-22 20:48:53 +000018#include "llvm/MC/MCAsmInfo.h"
Anton Korobeynikov10138002009-05-03 12:57:15 +000019
20namespace llvm {
Chris Lattner9a6cf912009-08-12 07:22:17 +000021 class Target;
Benjamin Kramer92d89982010-07-14 22:38:02 +000022
David Blaikiea379b1812011-12-20 02:50:00 +000023 class MSP430MCAsmInfo : public MCAsmInfo {
24 virtual void anchor();
25 public:
Benjamin Kramer92d89982010-07-14 22:38:02 +000026 explicit MSP430MCAsmInfo(const Target &T, StringRef TT);
Anton Korobeynikov10138002009-05-03 12:57:15 +000027 };
28
29} // namespace llvm
30
31#endif