blob: b75c9e9837f15da22a08296d91a6c5c42fea91cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//===- lib/ReaderWriter/PECOFF/Pass.h -------------------------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_READER_WRITER_PE_COFF_PASS_H
#define LLD_READER_WRITER_PE_COFF_PASS_H
#include "Atoms.h"
namespace lld {
namespace pecoff {
void addDir32Reloc(COFFBaseDefinedAtom *atom, const Atom *target,
size_t offsetInAtom = 0);
void addDir32NBReloc(COFFBaseDefinedAtom *atom, const Atom *target,
size_t offsetInAtom = 0);
} // namespace pecoff
} // namespace lld
#endif
|