blob: 153655594911e625371b7bbc38009931639e0f84 [file] [log] [blame]
Bill Wendling841056a2007-01-24 03:36:05 +00001//===-- PPCMachOWriterInfo.h - Mach-O Writer Info for PowerPC ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Bill Wendling and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements Mach-O writer information for the PowerPC backend.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef PPC_MACHO_WRITER_INFO_H
15#define PPC_MACHO_WRITER_INFO_H
16
17#include "llvm/Target/TargetMachOWriterInfo.h"
18
19namespace llvm {
20
21 // Forward declarations
22 class PPCTargetMachine;
23
Bill Wendling2b721822007-01-24 07:13:56 +000024 class PPCMachOWriterInfo : public TargetMachOWriterInfo {
25 public:
Bill Wendling841056a2007-01-24 03:36:05 +000026 PPCMachOWriterInfo(const PPCTargetMachine &TM);
27 virtual ~PPCMachOWriterInfo() {}
Bill Wendling841056a2007-01-24 03:36:05 +000028 };
29
30} // end llvm namespace
31
32#endif // PPC_MACHO_WRITER_INFO_H