1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-26 06:22:56 +02:00
llvm-mirror/lib/Target/XCore/XCoreMCAsmInfo.h

31 lines
801 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/ADT/StringRef.h"
#include "llvm/MC/MCAsmInfo.h"
2008-11-07 11:59:00 +01:00
namespace llvm {
class Target;
class XCoreMCAsmInfo : public MCAsmInfo {
2008-11-07 11:59:00 +01:00
public:
explicit XCoreMCAsmInfo(const Target &T, StringRef TT);
2008-11-07 11:59:00 +01:00
};
} // namespace llvm
#endif