comparison lld/COFF/MarkLive.h @ 236:c4bab56944e8 llvm-original

LLVM 16
author kono
date Wed, 09 Nov 2022 17:45:10 +0900
parents 1d019706d866
children
comparison
equal deleted inserted replaced
232:70dce7da266c 236:c4bab56944e8
8 8
9 #ifndef LLD_COFF_MARKLIVE_H 9 #ifndef LLD_COFF_MARKLIVE_H
10 #define LLD_COFF_MARKLIVE_H 10 #define LLD_COFF_MARKLIVE_H
11 11
12 #include "lld/Common/LLVM.h" 12 #include "lld/Common/LLVM.h"
13 #include "llvm/ADT/ArrayRef.h"
14 13
15 namespace lld { 14 namespace lld::coff {
16 namespace coff {
17 15
18 class Chunk; 16 class COFFLinkerContext;
19 17
20 void markLive(ArrayRef<Chunk *> chunks); 18 void markLive(COFFLinkerContext &ctx);
21 19
22 } // namespace coff 20 } // namespace lld::coff
23 } // namespace lld
24 21
25 #endif // LLD_COFF_MARKLIVE_H 22 #endif // LLD_COFF_MARKLIVE_H