2012-02-18 12:03:15 +00:00
|
|
|
//===-- XCoreMCAsmInfo.h - XCore asm properties ----------------*- C++ -*--===//
|
2008-11-07 10:59:00 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-08-22 20:48:53 +00:00
|
|
|
// This file contains the declaration of the XCoreMCAsmInfo class.
|
2008-11-07 10:59:00 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef XCORETARGETASMINFO_H
|
|
|
|
#define XCORETARGETASMINFO_H
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2008-11-07 10:59:00 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2012-03-27 07:54:11 +00:00
|
|
|
class StringRef;
|
2009-08-12 07:22:17 +00:00
|
|
|
class Target;
|
2010-07-14 22:38:02 +00:00
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
class XCoreMCAsmInfo : public MCAsmInfo {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2008-11-07 10:59:00 +00:00
|
|
|
public:
|
2013-05-10 18:16:59 +00:00
|
|
|
explicit XCoreMCAsmInfo(StringRef TT);
|
2008-11-07 10:59:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|