xref: /openbsd-src/gnu/llvm/lld/wasm/Relocations.h (revision ece8a53058b183aa0a669e21c57225431117089d)
1*ece8a530Spatrick //===- Relocations.h -------------------------------------------*- C++ -*-===//
2*ece8a530Spatrick //
3*ece8a530Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*ece8a530Spatrick // See https://llvm.org/LICENSE.txt for license information.
5*ece8a530Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*ece8a530Spatrick //
7*ece8a530Spatrick //===----------------------------------------------------------------------===//
8*ece8a530Spatrick 
9*ece8a530Spatrick #ifndef LLD_WASM_RELOCATIONS_H
10*ece8a530Spatrick #define LLD_WASM_RELOCATIONS_H
11*ece8a530Spatrick 
12*ece8a530Spatrick namespace lld {
13*ece8a530Spatrick namespace wasm {
14*ece8a530Spatrick 
15*ece8a530Spatrick class InputChunk;
16*ece8a530Spatrick 
17*ece8a530Spatrick void scanRelocations(InputChunk *chunk);
18*ece8a530Spatrick 
19*ece8a530Spatrick } // namespace wasm
20*ece8a530Spatrick } // namespace lld
21*ece8a530Spatrick 
22*ece8a530Spatrick #endif
23