[opaque pointer type]: Pass explicit pointee type when building a constant GEP.
[oota-llvm.git] / include / llvm / Object / SymbolSize.h
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