MC/Mach-O: Move createMachObjectWriter into MCMachObjectWriter.h.
[oota-llvm.git] / include / llvm / MC / MCMachObjectWriter.h
1 //===-- llvm/MC/MCMachObjectWriter.h - Mach Object Writer -------*- 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_MC_MCMACHOBJECTWRITER_H
11 #define LLVM_MC_MCMACHOBJECTWRITER_H
12
13 #include "llvm/MC/MCObjectWriter.h"
14
15 namespace llvm {
16
17 MCObjectWriter *createMachObjectWriter(raw_ostream &OS, bool is64Bit,
18                                        uint32_t CPUType, uint32_t CPUSubtype,
19                                        bool IsLittleEndian);
20
21 } // End llvm namespace
22
23 #endif