Displaying 2 results from an estimated 2 matches for "lto_codegen_model".
2008 Feb 23
5
[LLVMdev] new LTO C interface
...1800
} lto_symbol_attributes;
typedef enum {
LTO_DEBUG_MODEL_NONE = 0,
LTO_DEBUG_MODEL_DWARF = 1
} lto_debug_model;
typedef enum {
LTO_CODEGEN_PIC_MODEL_STATIC = 0,
LTO_CODEGEN_PIC_MODEL_DYNAMIC = 1,
LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC = 2
} lto_codegen_model;
// opaque reference to a loaded object module
typedef struct LTOModule* lto_module_t;
// opaque reference to a code generator
typedef struct LTOCodeGenerator* lto_code_gen_t;
#ifdef __cplusplus
extern "C" {
#endif
//
// returns a printable string
//
extern const char*
lto_...
2008 Feb 25
0
[LLVMdev] new LTO C interface
...enum {
> LTO_DEBUG_MODEL_NONE = 0,
> LTO_DEBUG_MODEL_DWARF = 1
> } lto_debug_model;
>
> typedef enum {
> LTO_CODEGEN_PIC_MODEL_STATIC = 0,
> LTO_CODEGEN_PIC_MODEL_DYNAMIC = 1,
> LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC = 2
> } lto_codegen_model;
>
>
> // opaque reference to a loaded object module
> typedef struct LTOModule* lto_module_t;
>
> // opaque reference to a code generator
> typedef struct LTOCodeGenerator* lto_code_gen_t;
>
>
> #ifdef __cplusplus
> extern "C" {
> #endif
>...