[ELF][ARM] Increase default max-page-size from 4096 to 6536
[llvm-project.git] / lld / wasm / Relocations.h
blob02787f551d804ba84fe02dce5bc999accb1996a6
1 //===- Relocations.h -------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLD_WASM_RELOCATIONS_H
10 #define LLD_WASM_RELOCATIONS_H
12 namespace lld {
13 namespace wasm {
15 class InputChunk;
17 void scanRelocations(InputChunk *chunk);
19 } // namespace wasm
20 } // namespace lld
22 #endif