llvm-65816/lib/Target/WDC65816/MCTargetDesc/WDC65816MCAsmInfo.h

31 lines
833 B
C++

//===-- WDC65816MCAsmInfo.h - WDC65816 asm properties ----------*- C++ -*--===//
//
// 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 WDC65816MCAsmInfo class.
//
//===----------------------------------------------------------------------===//
#ifndef WDC65816TARGETASMINFO_H
#define WDC65816TARGETASMINFO_H
#include "llvm/MC/MCAsmInfoELF.h"
namespace llvm {
class StringRef;
class WDC65816ELFMCAsmInfo : public MCAsmInfoELF {
virtual void anchor();
public:
explicit WDC65816ELFMCAsmInfo(StringRef TT);
};
} // namespace llvm
#endif