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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_XCORE_MCTARGETDESC_XCOREMCASMINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_XCORE_MCTARGETDESC_XCOREMCASMINFO_H
|
2008-11-07 10:59:00 +00:00
|
|
|
|
2013-10-16 01:34:32 +00:00
|
|
|
#include "llvm/MC/MCAsmInfoELF.h"
|
2008-11-07 10:59:00 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2015-06-04 13:12:25 +00:00
|
|
|
class Triple;
|
2010-07-14 22:38:02 +00:00
|
|
|
|
2015-06-04 13:12:25 +00:00
|
|
|
class XCoreMCAsmInfo : public MCAsmInfoELF {
|
|
|
|
void anchor() override;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit XCoreMCAsmInfo(const Triple &TT);
|
|
|
|
};
|
2008-11-07 10:59:00 +00:00
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|