blob: 097fc2cceba35ca46492a0b6e67a7043592c8254 [file] [log] [blame]
Chris Lattner80ec2792009-08-02 00:34:36 +00001//===-- llvm/Target/ARMTargetObjectFile.h - ARM 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_ARM_TARGETOBJECTFILE_H
11#define LLVM_TARGET_ARM_TARGETOBJECTFILE_H
12
Anton Korobeynikov362dd0b2010-02-15 22:37:53 +000013#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Chris Lattner80ec2792009-08-02 00:34:36 +000014
15namespace llvm {
Jim Grosbach764ab522009-08-11 15:33:49 +000016
Bill Wendlingbdc38e52010-03-09 18:31:07 +000017class MCContext;
18class TargetMachine;
Jim Grosbach764ab522009-08-11 15:33:49 +000019
Bill Wendlingbdc38e52010-03-09 18:31:07 +000020class ARMElfTargetObjectFile : public TargetLoweringObjectFileELF {
21public:
22 ARMElfTargetObjectFile() : TargetLoweringObjectFileELF() {}
Jim Grosbach764ab522009-08-11 15:33:49 +000023
Bill Wendlingbdc38e52010-03-09 18:31:07 +000024 virtual void Initialize(MCContext &Ctx, const TargetMachine &TM);
25};
26
Chris Lattner80ec2792009-08-02 00:34:36 +000027} // end namespace llvm
28
29#endif