1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 13:02:52 +02:00
llvm-mirror/lib/Target/XCore/XCoreMCAsmInfo.h

30 lines
794 B
C
Raw Normal View History

//=====-- XCoreMCAsmInfo.h - XCore asm properties -------------*- C++ -*--====//
2008-11-07 11:59:00 +01: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 XCoreMCAsmInfo class.
2008-11-07 11:59:00 +01:00
//
//===----------------------------------------------------------------------===//
#ifndef XCORETARGETASMINFO_H
#define XCORETARGETASMINFO_H
#include "llvm/MC/MCAsmInfo.h"
2008-11-07 11:59:00 +01:00
namespace llvm {
class Target;
class StringRef;
class XCoreMCAsmInfo : public MCAsmInfo {
2008-11-07 11:59:00 +01:00
public:
explicit XCoreMCAsmInfo(const Target &T, const StringRef &TT);
2008-11-07 11:59:00 +01:00
};
} // namespace llvm
#endif