Home | History | Annotate | Download | only in llvm-readobj
      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 
     15 namespace llvm {
     16 namespace object { class ObjectFile; }
     17 class raw_ostream;
     18 
     19 ErrorOr<void> dumpELFDynamicTable(object::ObjectFile *O, raw_ostream &OS);
     20 } // end namespace llvm
     21 
     22 #endif
     23