2009-07-28 03:13:23 +00:00
|
|
|
//===-- llvm/Target/XCoreTargetObjectFile.h - XCore Object Info -*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TARGET_XCORE_TARGETOBJECTFILE_H
|
|
|
|
#define LLVM_TARGET_XCORE_TARGETOBJECTFILE_H
|
|
|
|
|
2010-02-15 22:37:53 +00:00
|
|
|
#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
|
2009-07-28 03:13:23 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class XCoreTargetObjectFile : public TargetLoweringObjectFileELF {
|
|
|
|
public:
|
2009-07-31 18:48:30 +00:00
|
|
|
void Initialize(MCContext &Ctx, const TargetMachine &TM);
|
|
|
|
|
2009-07-28 03:13:23 +00:00
|
|
|
// TODO: Classify globals as xcore wishes.
|
|
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|