// // sets what if any format of debug info should be generated // returns true on error (check lto_get_error_message() for details) // bool lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model debug) { return cg->setDebugInfo(debug, sLastErrorString); }
/// lto_codegen_set_debug_model - Sets what if any format of debug info should /// be generated. Returns true on error (check lto_get_error_message() for /// details). bool lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model debug) { cg->setDebugInfo(debug); return false; }