X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Flto2%2Flto.cpp;h=f60f7b5ac0943e84fea03743a9f0db736ce5d62b;hb=ef194ed74033eba099f4f391ffdfc176f9aa6f26;hp=d6f1d98b168b3c3e38d86e8a64ee47a55e95c997;hpb=77595fc35642f990bfc5ad05b8e68d4056695eca;p=oota-llvm.git diff --git a/tools/lto2/lto.cpp b/tools/lto2/lto.cpp index d6f1d98b168..f60f7b5ac09 100644 --- a/tools/lto2/lto.cpp +++ b/tools/lto2/lto.cpp @@ -33,7 +33,7 @@ extern const char* lto_get_version() } // -// returns the last error string or NULL if last operation was sucessful +// returns the last error string or NULL if last operation was successful // const char* lto_get_error_message() { @@ -224,13 +224,14 @@ bool lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path) // -// generates code for all added modules into one object file -// On sucess returns a pointer to a generated mach-o buffer and -// length set to the buffer size. Client must free() the buffer -// when done. -// On failure, returns NULL (check lto_get_error_message() for details) +// Generates code for all added modules into one native object file. +// On sucess returns a pointer to a generated mach-o/ELF buffer and +// length set to the buffer size. The buffer is owned by the +// lto_code_gen_t and will be freed when lto_codegen_dispose() +// is called, or lto_codegen_compile() is called again. +// On failure, returns NULL (check lto_get_error_message() for details). // -extern void* +extern const void* lto_codegen_compile(lto_code_gen_t cg, size_t* length) { return cg->compile(length, sLastErrorString);