llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h

32 lines
834 B
C
Raw Normal View History

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