SparcTargetObjectFile.h revision 262613
1//===-- SparcTargetObjectFile.h - Sparc Object Info -------------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_TARGET_SPARC_TARGETOBJECTFILE_H
11#define LLVM_TARGET_SPARC_TARGETOBJECTFILE_H
12
13#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
14
15namespace llvm {
16
17class MCContext;
18class TargetMachine;
19
20class SparcELFTargetObjectFile : public TargetLoweringObjectFileELF {
21public:
22  SparcELFTargetObjectFile() :
23    TargetLoweringObjectFileELF()
24  {}
25
26  const MCExpr *
27  getTTypeGlobalReference(const GlobalValue *GV, Mangler *Mang,
28                          MachineModuleInfo *MMI, unsigned Encoding,
29                          MCStreamer &Streamer) const;
30};
31
32} // end namespace llvm
33
34#endif
35