2008-11-07 10:59:00 +00:00
|
|
|
//=====-- XCoreTargetAsmInfo.h - XCore 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 XCoreTargetAsmInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef XCORETARGETASMINFO_H
|
|
|
|
#define XCORETARGETASMINFO_H
|
|
|
|
|
2009-08-02 04:27:24 +00:00
|
|
|
#include "llvm/Target/TargetAsmInfo.h"
|
2008-11-07 10:59:00 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-08-12 07:22:17 +00:00
|
|
|
class Target;
|
|
|
|
class StringRef;
|
2009-08-02 04:27:24 +00:00
|
|
|
class XCoreTargetAsmInfo : public TargetAsmInfo {
|
2008-11-07 10:59:00 +00:00
|
|
|
public:
|
2009-08-12 07:22:17 +00:00
|
|
|
explicit XCoreTargetAsmInfo(const Target &T, const StringRef &TT);
|
2008-11-07 10:59:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|