diff options
Diffstat (limited to 'gcc/lto')
-rw-r--r-- | gcc/lto/ChangeLog | 18 | ||||
-rw-r--r-- | gcc/lto/lto-object.c | 4 |
2 files changed, 19 insertions, 3 deletions
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index 8309ab97d5a..a0a21b87b76 100644 --- a/gcc/lto/ChangeLog +++ b/gcc/lto/ChangeLog @@ -1,3 +1,21 @@ +2014-07-30 Richard Biener <rguenther@suse.de> + + * lto-streamer.h (lto_write_data): New function. + * langhooks.c (lhd_append_data): Do not free block. + * lto-section-out.c (lto_write_data): New function writing + raw data to the current section. + (lto_write_stream): Adjust for langhook semantic change. + (lto_destroy_simple_output_block): Write header directly. + * lto-opts.c (lto_write_options): Write options directly. + * lto-streamer-out.c (produce_asm): Write heaeder directly. + (lto_output_toplevel_asms): Likewise. + (copy_function_or_variable): Copy data directly. + (write_global_references): Output index table directly. + (lto_output_decl_state_refs): Likewise. + (write_symbol): Write data directly. + (produce_symtab): Adjust. + (produce_asm_for_decls): Output header and refs directly. + 2014-07-25 Andi Kleen <ak@linux.intel.com> * lto.c (hash_canonical_type): Call iterative_hstate_expr. diff --git a/gcc/lto/lto-object.c b/gcc/lto/lto-object.c index c406efb3c30..323f7b2a74e 100644 --- a/gcc/lto/lto-object.c +++ b/gcc/lto/lto-object.c @@ -354,7 +354,7 @@ lto_obj_begin_section (const char *name) DATA. */ void -lto_obj_append_data (const void *data, size_t len, void *block) +lto_obj_append_data (const void *data, size_t len, void *) { struct lto_simple_object *lo; const char *errmsg; @@ -372,8 +372,6 @@ lto_obj_append_data (const void *data, size_t len, void *block) else fatal_error ("%s: %s", errmsg, xstrerror (errno)); } - - free (block); } /* Stop writing to the current output section. */ |