Bill Wendling | 841056a | 2007-01-24 03:36:05 +0000 | [diff] [blame] | 1 | //===-- 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 | |
| 19 | namespace llvm { |
| 20 | |
| 21 | // Forward declarations |
| 22 | class PPCTargetMachine; |
| 23 | |
Bill Wendling | 2b72182 | 2007-01-24 07:13:56 +0000 | [diff] [blame] | 24 | class PPCMachOWriterInfo : public TargetMachOWriterInfo { |
| 25 | public: |
Bill Wendling | 841056a | 2007-01-24 03:36:05 +0000 | [diff] [blame] | 26 | PPCMachOWriterInfo(const PPCTargetMachine &TM); |
| 27 | virtual ~PPCMachOWriterInfo() {} |
Bill Wendling | 841056a | 2007-01-24 03:36:05 +0000 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | } // end llvm namespace |
| 31 | |
| 32 | #endif // PPC_MACHO_WRITER_INFO_H |