1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 05:23:45 +02:00
llvm-mirror/tools/yaml2obj/yaml2macho.cpp

24 lines
702 B
C++
Raw Normal View History

//===- yaml2macho - Convert YAML to a Mach object file --------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
///
/// \file
/// \brief The Mach component of yaml2obj.
///
//===----------------------------------------------------------------------===//
#include "yaml2obj.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
int yaml2macho(llvm::yaml::Input &YIn, llvm::raw_ostream &Out) {
errs() << "yaml2obj: Mach-O not implemented yet!\n";
return 1;
}