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-02 04:27:24 +00:00
|
|
|
class XCoreTargetAsmInfo : public TargetAsmInfo {
|
2008-11-07 10:59:00 +00:00
|
|
|
public:
|
2009-08-02 04:42:09 +00:00
|
|
|
explicit XCoreTargetAsmInfo();
|
2008-11-07 10:59:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|