mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
`available_externally` linkage. This allows the inliner to inline functions from other modules while telling the code generator to ignore those functions (treat them as declarations) Still generates a few extra `TypeInfo`s and strings... Disabled when generating debug info because I don't really understand it, and it doesn't like this.
14 lines
189 B
C
14 lines
189 B
C
enum
|
|
{
|
|
LLVMnone,
|
|
LLVMintrinsic,
|
|
LLVMno_typeinfo,
|
|
LLVMno_moduleinfo,
|
|
LLVMalloca,
|
|
LLVMva_start,
|
|
LLVMva_copy,
|
|
LLVMva_end,
|
|
LLVMva_arg,
|
|
LLVMinline_asm
|
|
};
|