* MAINTAINERS (nvptx): Add self.
[official-gcc.git] / libgfortran / ChangeLog
blob29efe0ad486ed010f0babcc5f3daf508203cd6e3
1 2015-07-29  Uros Bizjak  <ubizjak@gmail.com>
3         PR libgfortran/66650
4         * libgfortran.h (GFC_DTYPE_SIZE_MASK): Rewrite to avoid
5         "left shift of negative value" warning.
7 2015-07-14  Janne Blomqvist  <jb@gcc.gnu.org>
9         PR libfortran/66861
10         * io/unix.c (compare_file_filename): Verify that u->filename is
11         non-NULL before strcmp.
12         (find_file0): Likewise.
14 2015-07-06  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
16         PR libfortran/40267
17         * Makefile.am: Remove libgfortranbegin targets.
18         * Makefile.in: Regenerate.
19         * fmain.c: Remove.
21 2015-04-22  Szabolcs Nagy  <szabolcs.nagy@arm.com>
23         * acinclude.m4 (GTHREAD_USE_WEAK): Define as 0 for *-*-musl*.
24         * configure: Regenerate.
26 2015-04-21 Jerry DeLisle  <jvdelisle@gcc.gnu.org>
28         PR libgfortran/65234
29         * io/format.c (parse_format_list): Set the seen_dd flag in all
30         cases where a data descriptor has been seen.
32 2015-04-21 Jerry DeLisle  <jvdelisle@gcc.gnu.org>
34         PR libgfortran/56743
35         * io/list_read.c (CASE_SEPARATORS): Add case for '!'.
36         (is_separator): Add condition for '!'.
37         (eat_separator): Use notify_std to warn or errord if '!' is
38         encountered before a proper separator.
40 2015-04-14 Jerry DeLisle  <jvdelisle@gcc.gnu.org>
42         PR libgfortran/65089
43         * io/format.h (free_format): New function to free memory
44         allocated for building format error messages.
45         * io/format.c (format_error): Add checks before freeing memory
46         to avoid potential segfaults and free formatting data when
47         needed on error conditions. Always allocate and NULL terminate
48         the string.
49         * io/transfer.c (st_read_done, st_write_done): Use new
50         free_format function to clean up memory allocations when done.
52 2015-03-28 Jerry DeLisle  <jvdelisle@gcc.gnu.org>
54         PR libgfortran/65596
55         * io/transfer.c (data_transfer_init): If in namelist mode and
56         delimiter is not specified, set it to DELIM_QUOTE, independent
57         of -std.
58         * io/unit.c (init_units): Set flags.delim to the correct
59         initial value of DELIM_UNSPECIFIED.
61 2015-03-25 Jerry DeLisle  <jvdelisle@gcc.gnu.org>
63         PR libgfortran/65541
64         * io/write.c (nml_write_obj): Convert '+' to '%' before emitting
65         object names in namelists.
67 2015-03-22 Jerry DeLisle  <jvdelisle@gcc.gnu.org>
69         PR libgfortran/59513
70         * io/transfer.c (data_transfer_init): Do not error for
71         -std=legacy.
73 2015-03-16 Jerry DeLisle  <jvdelisle@gcc.gnu.org>
75         PR libgfortran/64432
76         * intrinsics/system_clock.c (system_clock4, system_clock8):
77         Cleanup some whitespace.
79 2015-03-11  Thomas Schwinge  <thomas@codesourcery.com>
81         * caf/single.c (caf_runtime_error): Revert 2014-11-28 changes.
82         * runtime/minimal.c (STRERR_MAXSZ): Don't define.
83         (runtime_error_at, sys_abort): Bring more in line with the
84         non-LIBGFOR_MINIMAL code.
85         (runtime_warning_at, internal_error): New functions.
87 2015-03-11  Janne Blomqvist  <jb@gcc.gnu.org>
89         PR libfortran/65200
90         * io/open.c (new_unit): Use gf_strerror rather than hardcoding
91         error messages for different errno values.
92         * io/unix.c (regular_file2): Handle EPERM in addition to EACCES.
94 2015-03-10  Alessandro Fanfarillo  <fanfarillo.gcc@gmail.com>
95             Tobias Burnus  <burnus@net-b.de>
97         * caf/libcaf.h (_gfortran_caf_sync_memory): New prototype.
98         * caf/single.c (_gfortran_caf_sync_memory): Implement.
99         (_gfortran_caf_sync_all, _gfortran_caf_sync_image): Add
100         __asm__ __volatile___ ("":::"memory").
102 2015-02-10 Jerry DeLisle  <jvdelisle@gcc.gnu.org>
104         PR libgfortran/57822
105         * io/write_float.def (output_float): Apply fix of previous patch
106         to correctly calculate the exponent number of digits and take
107         care of wide character output.
109 2015-02-09  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
111         PR libgfortran/57822
112         * io/write_float.def (output_float): If doing g0 editing and
113         exponent is zero, do not emit exponent.
115 2015-02-07  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
117         PR libgfortran/60956
118         * io/fbuf.c (fbuf_flush_list): New function that only flushes
119         if current fbuf position exceeds a limit.
120         * io/fbuf.h: Declare the new function.
121         * io/io.h (enum unit_mode): Add two new modes.
122         * io/list_read.c (list_formatted_read_scalar): Call new function.
123         * io/write.c: Include fbuf.h. (list_formatted_write_scalar):
124         Call new function.
126 2015-01-24  Janne Blomqvist  <jb@gcc.gnu.org>
128         PR libfortran/64770
129         * io/unit.c (filename_from_unit): Check that u->filename != NULL
130         before calling strdup.
132 2015-01-22  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
134         PR libgfortran/61933
135         * io/inquire.c (inquire_via_unit): Set existing to true for
136         any negative unit that is currently connected and any positive
137         units within range of KIND=4 value.  The unit value for any out
138         of range case that may occur if the user is using a KIND=8 will
139         have been set to -2 which is reserved and can never be opened,
140         and therefore the unit does not exist.
142 2015-01-14  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
144         PR libgfortran/61933
145         * io/inquire.c (inquire_via_unit): Set existing to true if a
146         gfc_unit stucture was found for the given unit number.
147         * runtime/error.c (translate_error): Add case for
148         LIBERROR_INQUIRE_INTERNAL_UNIT.
150 2015-01-05  Jakub Jelinek  <jakub@redhat.com>
152         Update copyright years.
154 2015-01-02  Tobias Burnus  <burnus@net-b.de>
156         * caf/single.c (_gfortran_caf_co_reduce): New function.
157         * caf/libcaf.h (_gfortran_caf_co_reduce): New prototype.
159 Copyright (C) 2015 Free Software Foundation, Inc.
161 Copying and distribution of this file, with or without modification,
162 are permitted in any medium without royalty provided the copyright
163 notice and this notice are preserved.