Venkatraman Govindaraju | fd5c1f9 | 2014-01-29 04:51:35 +0000 | [diff] [blame] | 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 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 10 | #ifndef LLVM_LIB_TARGET_SPARC_SPARCTARGETOBJECTFILE_H |
| 11 | #define LLVM_LIB_TARGET_SPARC_SPARCTARGETOBJECTFILE_H |
Venkatraman Govindaraju | fd5c1f9 | 2014-01-29 04:51:35 +0000 | [diff] [blame] | 12 | |
| 13 | #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h" |
| 14 | |
| 15 | namespace llvm { |
| 16 | |
| 17 | class MCContext; |
| 18 | class TargetMachine; |
| 19 | |
| 20 | class SparcELFTargetObjectFile : public TargetLoweringObjectFileELF { |
| 21 | public: |
| 22 | SparcELFTargetObjectFile() : |
| 23 | TargetLoweringObjectFileELF() |
| 24 | {} |
| 25 | |
Rafael Espindola | daeafb4 | 2014-02-19 17:23:20 +0000 | [diff] [blame] | 26 | const MCExpr * |
| 27 | getTTypeGlobalReference(const GlobalValue *GV, unsigned Encoding, |
| 28 | Mangler &Mang, const TargetMachine &TM, |
Craig Topper | 7315602 | 2014-03-02 09:09:27 +0000 | [diff] [blame] | 29 | MachineModuleInfo *MMI, |
| 30 | MCStreamer &Streamer) const override; |
Venkatraman Govindaraju | fd5c1f9 | 2014-01-29 04:51:35 +0000 | [diff] [blame] | 31 | }; |
| 32 | |
| 33 | } // end namespace llvm |
| 34 | |
| 35 | #endif |