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
2 parents 03984bd + 4ff98fd commit aa42d0cCopy full SHA for aa42d0c
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