mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 03:24:09 +00:00
[llvm-readobj] Add ELF .dynamic table dumping.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175592 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
22
tools/llvm-readobj/llvm-readobj.h
Normal file
22
tools/llvm-readobj/llvm-readobj.h
Normal file
@ -0,0 +1,22 @@
|
||||
//===- llvm-readobj.h - Dump contents of an Object File -------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_TOOLS_READ_OBJ_H
|
||||
#define LLVM_TOOLS_READ_OBJ_H
|
||||
|
||||
#include "llvm/Support/ErrorOr.h"
|
||||
|
||||
namespace llvm {
|
||||
namespace object { class ObjectFile; }
|
||||
class raw_ostream;
|
||||
|
||||
ErrorOr<void> dumpELFDynamicTable(object::ObjectFile *O, raw_ostream &OS);
|
||||
} // end namespace llvm
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user