blob: 2a0a90e5cfd5dbd7866aab77deb25d0010a19cb4 [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"
Eric Christopher9cad53c2013-04-03 18:31:38 +000017#include "llvm/Object/ObjectFile.h"
Zachary Turner88bb1632016-05-03 00:28:04 +000018#include "llvm/Support/ScopedPrinter.h"
Eric Christopher9cad53c2013-04-03 18:31:38 +000019#include "llvm/Support/raw_ostream.h"
20
21namespace llvm {
22
Zachary Turner88bb1632016-05-03 00:28:04 +000023ObjDumper::ObjDumper(ScopedPrinter &Writer) : W(Writer) {}
Eric Christopher9cad53c2013-04-03 18:31:38 +000024
25ObjDumper::~ObjDumper() {
26}
27
28} // namespace llvm