llvm-readobj.h revision d326d05fb9c794e93fc7fc0601028f196600f7e2
1//===- llvm-readobj.h - Dump contents of an Object File -------------------===//
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_TOOLS_READ_OBJ_H
11#define LLVM_TOOLS_READ_OBJ_H
12
13#include "llvm/Support/ErrorOr.h"
14
15namespace llvm {
16namespace object { class ObjectFile; }
17class raw_ostream;
18
19ErrorOr<void> dumpELFDynamicTable(object::ObjectFile *O, raw_ostream &OS);
20} // end namespace llvm
21
22#endif
23