2012-02-18 20:03:15 +08:00
|
|
|
//===-- 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-23 04:48:53 +08:00
|
|
|
// This file contains the declaration of the MSP430MCAsmInfo class.
|
2009-05-03 20:57:15 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +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
|
|
|
|
2013-10-16 09:34:32 +08:00
|
|
|
#include "llvm/MC/MCAsmInfoELF.h"
|
2009-05-03 20:57:15 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
2015-06-04 21:12:25 +08:00
|
|
|
class Triple;
|
2010-07-15 06:38:02 +08:00
|
|
|
|
2013-10-16 09:34:32 +08:00
|
|
|
class MSP430MCAsmInfo : public MCAsmInfoELF {
|
2014-04-29 15:58:09 +08:00
|
|
|
void anchor() override;
|
2011-12-20 10:50:00 +08:00
|
|
|
public:
|
2015-06-04 21:12:25 +08:00
|
|
|
explicit MSP430MCAsmInfo(const Triple &TT);
|
2009-05-03 20:57:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|