blob: 91803de1a1db50732e2cec5b8fa21bb246799214 [file] [log] [blame]
Eric Christopher9cad53c2013-04-03 18:31:38 +00001//===-- ObjDumper.cpp - Base dumper class -----------------------*- 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/// \file
11/// \brief This file implements ObjDumper.
12///
13//===----------------------------------------------------------------------===//
14
15#include "ObjDumper.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000016#include "Error.h"
17#include "StreamWriter.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000018#include "llvm/Object/ObjectFile.h"
19#include "llvm/Support/raw_ostream.h"
20
21namespace llvm {
22
23ObjDumper::ObjDumper(StreamWriter& Writer)
24 : W(Writer) {
25}
26
27ObjDumper::~ObjDumper() {
28}
29
30} // namespace llvm