diff options
Diffstat (limited to 'contrib/llvm-project/llvm/include/llvm-c/Linker.h')
-rw-r--r-- | contrib/llvm-project/llvm/include/llvm-c/Linker.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/contrib/llvm-project/llvm/include/llvm-c/Linker.h b/contrib/llvm-project/llvm/include/llvm-c/Linker.h index 1ad9cc958753..acff5d5e2225 100644 --- a/contrib/llvm-project/llvm/include/llvm-c/Linker.h +++ b/contrib/llvm-project/llvm/include/llvm-c/Linker.h @@ -19,6 +19,13 @@ LLVM_C_EXTERN_C_BEGIN +/** + * @defgroup LLVMCCoreLinker Linker + * @ingroup LLVMCCore + * + * @{ + */ + /* This enum is provided for backwards-compatibility only. It has no effect. */ typedef enum { LLVMLinkerDestroySource = 0, /* This is the default behavior. */ @@ -35,4 +42,8 @@ LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src); LLVM_C_EXTERN_C_END +/** + * @} + */ + #endif |