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

31 lines
860 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 LLVM_LIB_TARGET_MSP430_MCTARGETDESC_MSP430MCASMINFO_H
#define LLVM_LIB_TARGET_MSP430_MCTARGETDESC_MSP430MCASMINFO_H
2009-05-03 20:57:15 +08:00
#include "llvm/MC/MCAsmInfoELF.h"
2009-05-03 20:57:15 +08:00
namespace llvm {
class Triple;
class MSP430MCAsmInfo : public MCAsmInfoELF {
void anchor() override;
public:
explicit MSP430MCAsmInfo(const Triple &TT);
2009-05-03 20:57:15 +08:00
};
} // namespace llvm
#endif