LLVM  3.7.0
SymbolSize.h
Go to the documentation of this file.
1 //===- SymbolSize.h ---------------------------------------------*- 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 
11 #ifndef LLVM_OBJECT_SYMBOLSIZE_H
12 #define LLVM_OBJECT_SYMBOLSIZE_H
13 
14 #include "llvm/Object/ObjectFile.h"
15 
16 namespace llvm {
17 namespace object {
18 std::vector<std::pair<SymbolRef, uint64_t>>
19 computeSymbolSizes(const ObjectFile &O);
20 }
21 } // namespace llvm
22 
23 #endif
std::vector< std::pair< SymbolRef, uint64_t > > computeSymbolSizes(const ObjectFile &O)
Definition: SymbolSize.cpp:47