blob: f3138a22022daadfcfdf4e575a43bd14b7ddb3ed [file] [log] [blame]
Chris Lattneraf76e592009-08-22 20:48:53 +00001//=====-- MSP430MCAsmInfo.h - MSP430 asm properties -----------*- C++ -*--====//
Anton Korobeynikovf2c3e172009-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 Lattneraf76e592009-08-22 20:48:53 +000010// This file contains the declaration of the MSP430MCAsmInfo class.
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000011//
12//===----------------------------------------------------------------------===//
13
14#ifndef MSP430TARGETASMINFO_H
15#define MSP430TARGETASMINFO_H
16
Benjamin Kramer38e59892010-07-14 22:38:02 +000017#include "llvm/ADT/StringRef.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000018#include "llvm/MC/MCAsmInfo.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000019
20namespace llvm {
Chris Lattnera7ac47c2009-08-12 07:22:17 +000021 class Target;
Benjamin Kramer38e59892010-07-14 22:38:02 +000022
Chris Lattneraf76e592009-08-22 20:48:53 +000023 struct MSP430MCAsmInfo : public MCAsmInfo {
Benjamin Kramer38e59892010-07-14 22:38:02 +000024 explicit MSP430MCAsmInfo(const Target &T, StringRef TT);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000025 };
26
27} // namespace llvm
28
29#endif