search for: __lto__h__

Displaying 2 results from an estimated 2 matches for "__lto__h__".

2008 Feb 23
5
[LLVMdev] new LTO C interface
...--------- -===// // // This header provides public interface to an abstract link time optimization // library. LLVM provides an implementation of this interface for use with // llvm bitcode files. // // ===--------------------------------------------------------------------- -===// #ifndef __LTO__H__ #define __LTO__H__ #include <stdint.h> #include <stdbool.h> #include <stddef.h> typedef enum { LTO_SYMBOL_ALIGNMENT_MASK = 0x0000001F, /* log2 of alignment */ LTO_SYMBOL_PERMISSIONS_MASK = 0x000000E0, LTO_SYMBOL_PERMISSIONS_CODE = 0x000000...
2008 Feb 25
0
[LLVMdev] new LTO C interface
...stract link time > optimization > // library. LLVM provides an implementation of this interface for > use with > // llvm bitcode files. > // > // > = > = > = > ----------------------------------------------------------------------= > ==// > > #ifndef __LTO__H__ > #define __LTO__H__ > > #include <stdint.h> > #include <stdbool.h> > #include <stddef.h> > > typedef enum { > LTO_SYMBOL_ALIGNMENT_MASK = 0x0000001F, /* log2 of > alignment */ > LTO_SYMBOL_PERMISSIONS_MASK = 0x000000E0, &gt...