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

31 lines
788 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/MC/MCAsmInfo.h"
2009-05-03 20:57:15 +08:00
namespace llvm {
2012-03-27 15:54:11 +08:00
class StringRef;
class MSP430MCAsmInfo : public MCAsmInfo {
virtual void anchor();
public:
explicit MSP430MCAsmInfo(StringRef TT);
2009-05-03 20:57:15 +08:00
};
} // namespace llvm
#endif