We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
linkInModule()
bool OverrideSymbols
unsigned Flags
1 parent 27e04fc commit 3be3fceCopy full SHA for 3be3fce
llvm/include/llvm/Linker/Linker.h
@@ -25,6 +25,7 @@ class Linker {
25
public:
26
enum Flags {
27
None = 0,
28
+ /// Have symbols from Src shadow those in the Dest.
29
OverrideFromSrc = (1 << 0),
30
LinkOnlyNeeded = (1 << 1),
31
};
@@ -33,9 +34,6 @@ class Linker {
33
34
35
/// Link \p Src into the composite.
36
///
- /// Passing OverrideSymbols as true will have symbols from Src
37
- /// shadow those in the Dest.
38
- ///
39
/// Passing InternalizeCallback will have the linker call the function with
40
/// the new module and a list of global value names to be internalized by the
41
/// callback.
0 commit comments