2009-08-22 20:48:53 +00:00
|
|
|
//=====-- MSP430MCAsmInfo.h - MSP430 asm properties -----------*- C++ -*--====//
|
2009-05-03 12:57:15 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 20:48:53 +00:00
|
|
|
// This file contains the declaration of the MSP430MCAsmInfo class.
|
2009-05-03 12:57:15 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef MSP430TARGETASMINFO_H
|
|
|
|
#define MSP430TARGETASMINFO_H
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2009-05-03 12:57:15 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-08-12 07:22:17 +00:00
|
|
|
class Target;
|
|
|
|
class StringRef;
|
2009-08-22 20:48:53 +00:00
|
|
|
struct MSP430MCAsmInfo : public MCAsmInfo {
|
|
|
|
explicit MSP430MCAsmInfo(const Target &T, const StringRef &TT);
|
2009-05-03 12:57:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|