diff options
Diffstat (limited to 'libgfortran')
737 files changed, 1887 insertions, 1878 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index f014f00..eaa7676 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,1153 +1,15 @@ +2018-01-03 Jakub Jelinek <jakub@redhat.com> + + Update copyright years. + 2018-01-02 Janne Blomqvist <jb@gcc.gnu.org> PR libgfortran/83649 * io/unix.c (MAX_CHUNK): New define. (raw_read): For reads larger than MAX_CHUNK, loop. (raw_write): Write no more than MAX_CHUNK bytes per iteration. - -2017-12-29 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/83613 - * io/unit.c (init_units): Don't forget to unlock the unit locks - after being inserted. - -2017-12-29 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/83560 - * io/write.c (write_integer): Modify to use write_decimal. - For namelist mode, suppress leading blanks and emit them as - trailing blanks. Change parameter from len to kind for better - readability. (nml_write_obj): Fix comment style. - -2017-12-16 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/81937 - * io/list_read.c (next_char_internal): Don't attempt to read - from the internal unit stream if no bytes are left. Decrement - bytes_left in the right place. - -2017-12-12 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/78549 - * io/inquire.c (inquire_via_unit): Adjust test for existence for - pre-connected internal units. - * io/transfer.c (finalize_transfer): When done with a transfer - to internal units, free the format buffer and close the stream. - (st_read_done): Delete freeing the stream, now handled using - sclose in finalize_transfer. (st_write_done): Likewise. - * io/unit.c (get_unit): Return NULL for special reserved unit - numbers, signifying not accessible to the user. - (init_units): Insert the two special internal units into the - unit treap. This makes these unit structures available without - further allocations for later use by internal unit I/O. These - units are automatically deleted by normal program termination. - * io/unix.c (mem_close): Add a guard check to protect from double free. - -2017-12-03 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR fortran/36313 - * Makefile.am: Add new files for character-valued - maxval and minval. - * Makefile.in: Regenerated. - * gfortran.map: Add new functions. - * m4/iforeach-s2.m4: New file. - * m4/ifunction-s2.m4: New file. - * m4/iparm.m4: Add intitval for minval and maxval. - * m4/maxval0s.m4: New file. - * m4/maxval1s.m4: New file. - * m4/minval0s.m4: New file. - * m4/minval1s.m4: New file. - * generated/maxval0_s1.c: New file. - * generated/maxval0_s4.c: New file. - * generated/maxval1_s1.c: New file. - * generated/maxval1_s4.c: New file. - * generated/minval0_s1.c: New file. - * generated/minval0_s4.c: New file. - * generated/minval1_s1.c: New file. - * generated/minval1_s4.c: New file. - -2017-12-03 Jerry DeLisle <jvdelisle@gcc.gnu.org> - Dominique d'Humieres <dominiq@lps.ens.fr> - - PR libgfortran/83191 - * io/transfer.c (list_formatted_read_scalar): Do not set - namelist_mode bit here. (namelist_read): Likewise. - (data_transfer_init): Clear the mode bit here. - (finalize_transfer): Do set the mode bit just before any calls - to namelist_read or namelist_write. It can now be referred to - in complex_write. - * io/write.c (write_complex): Suppress the leading blanks when - namelist_mode bit is not set to 1. - -2017-12-02 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/83225 - * io/io.h (is_internal_unit): Use the unit_is_internal bit. - * io/transfer.c (data_transfer_init): Set the bit to true for - internal units. Use that bit for checks for internal unit - initializations. - * io/unit.c (insert_unit): As a precaution, set the - internal_unit_kind to zero when a unit structure is first created. - -2017-11-28 Janne Blomqvist <jb@gcc.gnu.org> - - PR fortran/53796 - * io/inquire.c (inquire_via_unit): Set recl to -1 for unconnected - units. - * io/io.h (default_recl): New variable. - * io/open.c (new_unit): Set recl to default_recl for sequential, - -2 for stream access. - * io/transfer.c (read_block_form): Test against default_recl - instead of DEFAULT_RECL. - (write_block): Likewise. - * io/unit.c (init_units): Calculate max_offset, default_recl. - * libgfortran.h (DEFAULT_RECL): Remove. - * runtime/environ.c: Remove GFORTRAN_DEFAULT_RECL. - -2017-11-28 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/83168 - * io/write.c (select_string): Bump size by one to avoid - overrun. - -2017-11-24 Janne Blomqvist <jb@gcc.gnu.org> - - PR fortran/36313 - * m4/maxloc2s.m4: Replace int with gfc_charlen_type, take 3. - * m4/minloc2s.m4: Likewise. - * generated/maxloc2_16_s1.c: Regenerated. - * generated/maxloc2_16_s4.c: Regenerated. - * generated/maxloc2_4_s1.c: Regenerated. - * generated/maxloc2_4_s4.c: Regenerated. - * generated/maxloc2_8_s1.c: Regenerated. - * generated/maxloc2_8_s4.c: Regenerated. - * generated/minloc2_16_s1.c: Regenerated. - * generated/minloc2_16_s4.c: Regenerated. - * generated/minloc2_4_s1.c: Regenerated. - * generated/minloc2_4_s4.c: Regenerated. - * generated/minloc2_8_s1.c: Regenerated. - * generated/minloc2_8_s4.c: Regenerated. - -2017-11-23 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR fortran/36313 - * m4/maxloc2s.m4: Replace int for character length by - gfc_charlen_type. - * m4/minloc2s.m4: Likewise. - * generated./maxloc2_16_s1.c: Regenerated. - * generated./maxloc2_16_s4.c: Regenerated. - * generated./maxloc2_4_s1.c: Regenerated. - * generated./maxloc2_4_s4.c: Regenerated. - * generated./maxloc2_8_s1.c: Regenerated. - * generated./maxloc2_8_s4.c: Regenerated. - * generated./minloc2_16_s1.c: Regenerated. - * generated./minloc2_16_s4.c: Regenerated. - * generated./minloc2_4_s1.c: Regenerated. - * generated./minloc2_4_s4.c: Regenerated. - * generated./minloc2_8_s1.c: Regenerated. - * generated./minloc2_8_s4.c: Regenerated. - -2017-11-22 Janne Blomqvist <jb@gcc.gnu.org> - - * intrinsics/eoshift0.c (eoshift0): Make shift an index_type. - * intrinsics/eoshift2.c (eoshift2): Make shift an index_type. - -2017-11-22 Janne Blomqvist <jb@gcc.gnu.org> - - PR libfortran/83097 - * io/inquire.c (inquire_via_unit): Use __BYTE_ORDER__ predefined - macro. - * io/open.c (st_open): Likewise. - * io/transfer.c (data_transfer_init): Likewise. - * io/write.c (btoa_big): Likewise. - (otoa_big): Likewise. - (ztoa_big): Likewise. - * libgfortran.h (big_endian): Remove variable. - (GFOR_POINTER_TO_L1): Use __BYTE_ORDER__ macro. - * runtime/main.c (determine_endianness): Remove function. - (init): Remove call to determine_endianness. - * runtime/minimal.c: Remove setting big_endian variable. - -2017-11-22 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR fortran/36313 - * Makefile.am: Add i_maxloc0s_c, i_maxloc1s_c, i_maxloc2s_c, - i_minloc0s_c, i_minloc1s_c and i_minloc2s_c. - * Makefile.in: Regenerated. - * generated/maxloc0_16_s1.c: New file. - * generated/maxloc0_16_s4.c: New file. - * generated/maxloc0_4_s1.c: New file. - * generated/maxloc0_4_s4.c: New file. - * generated/maxloc0_8_s1.c: New file. - * generated/maxloc0_8_s4.c: New file. - * generated/maxloc1_16_s1.c: New file. - * generated/maxloc1_16_s4.c: New file. - * generated/maxloc1_4_s1.c: New file. - * generated/maxloc1_4_s4.c: New file. - * generated/maxloc1_8_s1.c: New file. - * generated/maxloc1_8_s4.c: New file. - * generated/maxloc2_16_s1.c: New file. - * generated/maxloc2_16_s4.c: New file. - * generated/maxloc2_4_s1.c: New file. - * generated/maxloc2_4_s4.c: New file. - * generated/maxloc2_8_s1.c: New file. - * generated/maxloc2_8_s4.c: New file. - * generated/minloc0_16_s1.c: New file. - * generated/minloc0_16_s4.c: New file. - * generated/minloc0_4_s1.c: New file. - * generated/minloc0_4_s4.c: New file. - * generated/minloc0_8_s1.c: New file. - * generated/minloc0_8_s4.c: New file. - * generated/minloc1_16_s1.c: New file. - * generated/minloc1_16_s4.c: New file. - * generated/minloc1_4_s1.c: New file. - * generated/minloc1_4_s4.c: New file. - * generated/minloc1_8_s1.c: New file. - * generated/minloc1_8_s4.c: New file. - * generated/minloc2_16_s1.c: New file. - * generated/minloc2_16_s4.c: New file. - * generated/minloc2_4_s1.c: New file. - * generated/minloc2_4_s4.c: New file. - * generated/minloc2_8_s1.c: New file. - * generated/minloc2_8_s4.c: New file. - * m4/iforeach-s.m4: New file. - * m4/ifunction-s.m4: New file. - * m4/maxloc0s.m4: New file. - * m4/maxloc1s.m4: New file. - * m4/maxloc2s.m4: New file. - * m4/minloc0s.m4: New file. - * m4/minloc1s.m4: New file. - * m4/minloc2s.m4: New file. - * gfortran.map: Add new functions. - * libgfortran.h: Add gfc_array_s1 and gfc_array_s4. - -2017-11-22 Janne Blomqvist <jb@gcc.gnu.org> - - PR libfortran/83070 - * intrinsics/eoshift0.c (eoshift0): Fix -Wsign-compare warning by - making a_ex and r_ex index_type instead of size_t. - -2017-11-20 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/78549 - * io/io.h (newunit_free): Add declaration. Clean some whitespace. - * io/transfer.c (st_read_done, st_write_done): Call newunit_free. - * io/unit.c (newunit_free): Change type from static void to void. - -2017-11-19 Janne Blomqvist <jb@gcc.gnu.org> - - PR fortran/44292 - * io/transfer.c (skip_record): Use gfc_offset to handle large - records. - (next_record_r): Likewise. - (sset): Likewise. - (next_record_w): Use gfc_offset/ptrdiff_t appropriately. - -2017-11-18 Janne Blomqvist <jb@gcc.gnu.org> - - PR fortran/83036 - * io/io.h: Make nextrec a GFC_IO_INT*. - -2017-11-18 Janne Blomqvist <jb@gcc.gnu.org> - - PR fortran/44292 - * io/io.h: Make recl_in a GC_IO_INT and recl_out a type - GFC_IO_INT*. - -2017-11-17 Igor Tsimbalist <igor.v.tsimbalist@intel.com> - - * acinclude.m4: Add enable.m4, cet.m4. - * Makefile.in: Regenerate. - * configure: Likewise. - * configure.ac: Set CET_FLAGS. Update AM_FCFLAGS, - AM_CFLAGS, CFLAGS. - -2017-10-27 Jerry DeLisle <jvdelisle@gcc.gnu.org> - Rimvydas (RJ) - - PR libgfortran/81938 - io/format.c (free_format_data): Don't try to free vlist - descriptors past the end of the fnode array. - -2017-10-10 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR libfortran/82233 - * intrinsics/execute_command_line.c (execute_command_line): - No call to runtime_error if cmdstat is present. - -2017-09-24 Dominique d'Humieres <dominiq@lps.ens.fr> - - PR libgfortran/79612 - * runtime/bounds.c: Use GFC_ASSERT. - -2017-09-10 Paul Thomas <pault@gcc.gnu.org> - - PR fortran/34640 - * libgfortran/libgfortran.h: Add span field to descriptor. - * libgfortran/libtool-version : Bump up version number to 5:0:0. - -2017-08-27 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/78387 - * io/list_read.c (nml_read_obj): Remove use of stash. - * io/transfer.c (st_read_done, st_write_done): Likewise. - * io/unit.c (stash_internal_unit): Delete function. - (get_unit): Remove use of stash. - (init_units): Likewise. - (close_units): Likewise. - * io/write.c (nml_write_obj): Likewise: - -2017-07-31 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR fortran/81581 - * m4/ifuntion.m4 (name`'rtype_qual`_'atype_code): Perform check - for dim. - (`m'name`'rtype_qual`_'atype_code): Likewise. Change type of rank - and tim to index_type. - (`s'name`'rtype_qual`_'atype_code): Perform check for dim. - * generated/iall_i16.c: Regenerated. - * generated/iall_i1.c: Regenerated. - * generated/iall_i2.c: Regenerated. - * generated/iall_i4.c: Regenerated. - * generated/iall_i8.c: Regenerated. - * generated/iany_i16.c: Regenerated. - * generated/iany_i1.c: Regenerated. - * generated/iany_i2.c: Regenerated. - * generated/iany_i4.c: Regenerated. - * generated/iany_i8.c: Regenerated. - * generated/iparity_i16.c: Regenerated. - * generated/iparity_i1.c: Regenerated. - * generated/iparity_i2.c: Regenerated. - * generated/iparity_i4.c: Regenerated. - * generated/iparity_i8.c: Regenerated. - * generated/maxloc1_16_i16.c: Regenerated. - * generated/maxloc1_16_i1.c: Regenerated. - * generated/maxloc1_16_i2.c: Regenerated. - * generated/maxloc1_16_i4.c: Regenerated. - * generated/maxloc1_16_i8.c: Regenerated. - * generated/maxloc1_16_r10.c: Regenerated. - * generated/maxloc1_16_r16.c: Regenerated. - * generated/maxloc1_16_r4.c: Regenerated. - * generated/maxloc1_16_r8.c: Regenerated. - * generated/maxloc1_4_i16.c: Regenerated. - * generated/maxloc1_4_i1.c: Regenerated. - * generated/maxloc1_4_i2.c: Regenerated. - * generated/maxloc1_4_i4.c: Regenerated. - * generated/maxloc1_4_i8.c: Regenerated. - * generated/maxloc1_4_r10.c: Regenerated. - * generated/maxloc1_4_r16.c: Regenerated. - * generated/maxloc1_4_r4.c: Regenerated. - * generated/maxloc1_4_r8.c: Regenerated. - * generated/maxloc1_8_i16.c: Regenerated. - * generated/maxloc1_8_i1.c: Regenerated. - * generated/maxloc1_8_i2.c: Regenerated. - * generated/maxloc1_8_i4.c: Regenerated. - * generated/maxloc1_8_i8.c: Regenerated. - * generated/maxloc1_8_r10.c: Regenerated. - * generated/maxloc1_8_r16.c: Regenerated. - * generated/maxloc1_8_r4.c: Regenerated. - * generated/maxloc1_8_r8.c: Regenerated. - * generated/maxval_i16.c: Regenerated. - * generated/maxval_i1.c: Regenerated. - * generated/maxval_i2.c: Regenerated. - * generated/maxval_i4.c: Regenerated. - * generated/maxval_i8.c: Regenerated. - * generated/maxval_r10.c: Regenerated. - * generated/maxval_r16.c: Regenerated. - * generated/maxval_r4.c: Regenerated. - * generated/maxval_r8.c: Regenerated. - * generated/minloc1_16_i16.c: Regenerated. - * generated/minloc1_16_i1.c: Regenerated. - * generated/minloc1_16_i2.c: Regenerated. - * generated/minloc1_16_i4.c: Regenerated. - * generated/minloc1_16_i8.c: Regenerated. - * generated/minloc1_16_r10.c: Regenerated. - * generated/minloc1_16_r16.c: Regenerated. - * generated/minloc1_16_r4.c: Regenerated. - * generated/minloc1_16_r8.c: Regenerated. - * generated/minloc1_4_i16.c: Regenerated. - * generated/minloc1_4_i1.c: Regenerated. - * generated/minloc1_4_i2.c: Regenerated. - * generated/minloc1_4_i4.c: Regenerated. - * generated/minloc1_4_i8.c: Regenerated. - * generated/minloc1_4_r10.c: Regenerated. - * generated/minloc1_4_r16.c: Regenerated. - * generated/minloc1_4_r4.c: Regenerated. - * generated/minloc1_4_r8.c: Regenerated. - * generated/minloc1_8_i16.c: Regenerated. - * generated/minloc1_8_i1.c: Regenerated. - * generated/minloc1_8_i2.c: Regenerated. - * generated/minloc1_8_i4.c: Regenerated. - * generated/minloc1_8_i8.c: Regenerated. - * generated/minloc1_8_r10.c: Regenerated. - * generated/minloc1_8_r16.c: Regenerated. - * generated/minloc1_8_r4.c: Regenerated. - * generated/minloc1_8_r8.c: Regenerated. - * generated/minval_i16.c: Regenerated. - * generated/minval_i1.c: Regenerated. - * generated/minval_i2.c: Regenerated. - * generated/minval_i4.c: Regenerated. - * generated/minval_i8.c: Regenerated. - * generated/minval_r10.c: Regenerated. - * generated/minval_r16.c: Regenerated. - * generated/minval_r4.c: Regenerated. - * generated/minval_r8.c: Regenerated. - * generated/norm2_r10.c: Regenerated. - * generated/norm2_r16.c: Regenerated. - * generated/norm2_r4.c: Regenerated. - * generated/norm2_r8.c: Regenerated. - * generated/parity_l16.c: Regenerated. - * generated/parity_l1.c: Regenerated. - * generated/parity_l2.c: Regenerated. - * generated/parity_l4.c: Regenerated. - * generated/parity_l8.c: Regenerated. - * generated/product_c10.c: Regenerated. - * generated/product_c16.c: Regenerated. - * generated/product_c4.c: Regenerated. - * generated/product_c8.c: Regenerated. - * generated/product_i16.c: Regenerated. - * generated/product_i1.c: Regenerated. - * generated/product_i2.c: Regenerated. - * generated/product_i4.c: Regenerated. - * generated/product_i8.c: Regenerated. - * generated/product_r10.c: Regenerated. - * generated/product_r16.c: Regenerated. - * generated/product_r4.c: Regenerated. - * generated/product_r8.c: Regenerated. - * generated/sum_c10.c: Regenerated. - * generated/sum_c16.c: Regenerated. - * generated/sum_c4.c: Regenerated. - * generated/sum_c8.c: Regenerated. - * generated/sum_i16.c: Regenerated. - * generated/sum_i1.c: Regenerated. - * generated/sum_i2.c: Regenerated. - * generated/sum_i4.c: Regenerated. - * generated/sum_i8.c: Regenerated. - * generated/sum_r10.c: Regenerated. - * generated/sum_r16.c: Regenerated. - * generated/sum_r4.c: Regenerated. - * generated/sum_r8.c: Regenerated. - -2017-07-24 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR fortran/80365 - * io/unix.c (buf_write): Return early if there is - nothing to write. - -2017-07-09 Thomas Koenig <tkoenig@gcc.gnu.org> - - * intrinsics/eoshift2.c (eoshift2): Use memcpy - for innermost copy where possible. - * m4/eoshift1.m4 (eoshift1): Likewise. - * m4/eoshift3.m4 (eoshift3): Likewise. - * generated/eoshift1_16.c: Regenerated. - * generated/eoshift1_4.c: Regenerated. - * generated/eoshift1_8.c: Regenerated. - * generated/eoshift3_16.c: Regenerated. - * generated/eoshift3_4.c: Regenerated. - * generated/eoshift3_8.c: Regenerated. - -2017-07-02 Thomas Koenig <tkoenig@gcc.gnu.org> - - * intrinsics/eoshift0.c: For contiguous arrays, use - block algorithm. Use memcpy where possible. - -2017-06-26 Jim Wilson <jim.wilson@r3-a15.aus-colo> - - PR libfortran/81195 - * io/unit.c (get_unit): Call __gthread_mutex_lock before newunit_stack - and newunit_tos references. Call __gthread_mutex_unlock afterward. - -2017-06-24 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR fortran/52473 - * Makefile.am: Add i_cshift1a_c. Add rules to generate files - from cshift1a.m4. - * Makefile.in: Regenerated. - * m4/cshift1a.m4: New file. - * m4/cshift.m4 (cshift1): Split up inner loop by removing - condition. Use memcpy where possible. Call helper functions - based on dtype. - * libgfortran.h: Add prototypes for cshift1_16_c10, - cshift1_16_c16, cshift1_16_c4, cshift1_16_c8, cshift1_16_i1, - cshift1_16_i16, cshift1_16_i2, cshift1_16_i4, cshift1_16_i8, - cshift1_16_r10, cshift1_16_r16, cshift1_16_r4, cshift1_16_r8, - cshift1_4_c10, cshift1_4_c16, cshift1_4_c4, cshift1_4_c8, - cshift1_4_i1, cshift1_4_i16, cshift1_4_i2, cshift1_4_i4, - cshift1_4_i8, cshift1_4_r10, cshift1_4_r16, cshift1_4_r4, - cshift1_4_r8, cshift1_8_c10, cshift1_8_c16, cshift1_8_c4, - cshift1_8_c8, cshift1_8_i1, cshift1_8_i16, cshift1_8_i2, - cshift1_8_i4, cshift1_8_i8, cshift1_8_r10, cshift1_8_r16, - cshift1_8_r4 and cshift1_8_r8. - * generated/cshift1_16_c10.c: New file, generated from cshift1a.m4. - * generated/cshift1_16_c16.c: New file, generated from cshift1a.m4. - * generated/cshift1_16_c4.c: New file, generated from cshift1a.m4. - * generated/cshift1_16_c8.c: New file, generated from cshift1a.m4. - * generated/cshift1_16_i1.c: New file, generated from cshift1a.m4. - * generated/cshift1_16_i16.c: New file, generated from cshift1a.m4. - * generated/cshift1_16_i2.c: New file, generated from cshift1a.m4. - * generated/cshift1_16_i4.c: New file, generated from cshift1a.m4. - * generated/cshift1_16_i8.c: New file, generated from cshift1a.m4. - * generated/cshift1_16_r10.c: New file, generated from cshift1a.m4. - * generated/cshift1_16_r16.c: New file, generated from cshift1a.m4. - * generated/cshift1_16_r4.c: New file, generated from cshift1a.m4. - * generated/cshift1_16_r8.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_c10.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_c16.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_c4.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_c8.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_i1.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_i16.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_i2.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_i4.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_i8.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_r10.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_r16.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_r4.c: New file, generated from cshift1a.m4. - * generated/cshift1_4_r8.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_c10.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_c16.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_c4.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_c8.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_i1.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_i16.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_i2.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_i4.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_i8.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_r10.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_r16.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_r4.c: New file, generated from cshift1a.m4. - * generated/cshift1_8_r8.c: New file, generated from cshift1a.m4. - -2017-06-18 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR fortran/52473 - * m4/cshift0.m4: For arrays that are contiguous up to - shift, implement blocked algorighm for cshift. - * generated/cshift0_c10.c: Regenerated. - * generated/cshift0_c16.c: Regenerated. - * generated/cshift0_c4.c: Regenerated. - * generated/cshift0_c8.c: Regenerated. - * generated/cshift0_i1.c: Regenerated. - * generated/cshift0_i16.c: Regenerated. - * generated/cshift0_i2.c: Regenerated. - * generated/cshift0_i4.c: Regenerated. - * generated/cshift0_i8.c: Regenerated. - * generated/cshift0_r10.c: Regenerated. - * generated/cshift0_r16.c: Regenerated. - * generated/cshift0_r4.c: Regenerated. - * generated/cshift0_r8.c: Regenerated. - -2017-06-06 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR fortran/80975 - * m4/matmul_internal.m4: Move zeroing before early return. - * generated/matmul_c10.c: Regenerated. - * generated/matmul_c16.c: Regenerated. - * generated/matmul_c4.c: Regenerated. - * generated/matmul_c8.c: Regenerated. - * generated/matmul_i1.c: Regenerated. - * generated/matmul_i16.c: Regenerated. - * generated/matmul_i2.c: Regenerated. - * generated/matmul_i4.c: Regenerated. - * generated/matmul_i8.c: Regenerated. - * generated/matmul_r10.c: Regenerated. - * generated/matmul_r16.c: Regenerated. - * generated/matmul_r4.c: Regenerated. - * generated/matmul_r8.c: Regenerated. - * generated/matmulavx128_c10.c: Regenerated. - * generated/matmulavx128_c16.c: Regenerated. - * generated/matmulavx128_c4.c: Regenerated. - * generated/matmulavx128_c8.c: Regenerated. - * generated/matmulavx128_i1.c: Regenerated. - * generated/matmulavx128_i16.c: Regenerated. - * generated/matmulavx128_i2.c: Regenerated. - * generated/matmulavx128_i4.c: Regenerated. - * generated/matmulavx128_i8.c: Regenerated. - * generated/matmulavx128_r10.c: Regenerated. - * generated/matmulavx128_r16.c: Regenerated. - * generated/matmulavx128_r4.c: Regenerated. - * generated/matmulavx128_r8.c: Regenerated. - -2017-05-29 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/53029 - * list_read.c (list_formatted_read_scala): Set the err return - value to the common.flags error values. - -2017-05-28 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> - - * acinclude.m4 (LIBGFOR_CHECK_FMA3): Use test from - check_effective_target_fma in gcc.target/i386/i386.exp. - (LIBGFOR_CHECK_FMA4): Use test from check_effective_target_fma4. - * configure: Regenerate. - -2017-05-26 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR boostrap/80889 - * acinclude.m4: Also set HAVE_AVX128 on the false - branch of LIBGFOR_CHECK_AVX128. - * configure: Regenerated. - -2017-05-25 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR libfortran/78379 - * Makefile.am: Add generated/matmulavx128_*.c files. - Handle them for compiling and setting the right flags. - * acinclude.m4: Add tests for FMA3, FMA4 and AVX128. - * configure.ac: Call them. - * Makefile.in: Regenerated. - * config.h.in: Regenerated. - * configure: Regenerated. - * m4/matmul.m4: Handle AMD chips by calling 128-bit AVX - versions which use FMA3 or FMA4. - * m4/matmulavx128.m4: New file. - * generated/matmul_c10.c: Regenerated. - * generated/matmul_c16.c: Regenerated. - * generated/matmul_c4.c: Regenerated. - * generated/matmul_c8.c: Regenerated. - * generated/matmul_i1.c: Regenerated. - * generated/matmul_i16.c: Regenerated. - * generated/matmul_i2.c: Regenerated. - * generated/matmul_i4.c: Regenerated. - * generated/matmul_i8.c: Regenerated. - * generated/matmul_r10.c: Regenerated. - * generated/matmul_r16.c: Regenerated. - * generated/matmul_r4.c: Regenerated. - * generated/matmul_r8.c: Regenerated. - * generated/matmulavx128_c10.c: New file. - * generated/matmulavx128_c16.c: New file. - * generated/matmulavx128_c4.c: New file. - * generated/matmulavx128_c8.c: New file. - * generated/matmulavx128_i1.c: New file. - * generated/matmulavx128_i16.c: New file. - * generated/matmulavx128_i2.c: New file. - * generated/matmulavx128_i4.c: New file. - * generated/matmulavx128_i8.c: New file. - * generated/matmulavx128_r10.c: New file. - * generated/matmulavx128_r16.c: New file. - * generated/matmulavx128_r4.c: New file. - * generated/matmulavx128_r8.c: New file. - -2017-05-19 Paul Thomas <pault@gcc.gnu.org> - Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR fortran/80333 - * list_read.c (nml_read_obj): Compute pointer into class/type - arrays from the nl->dim information. Update it for each iteration - of the loop for the given object. - -2017-05-17 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/80741 - * transfer.c (finalize_transfer): Reset last_char to 'empty'. - * file_pos.c (formatted_backspace): Likewise. - (st_endfile): Likewise. - (st_rewind): Likewise. - (st_flush): Likewise. - -2017-05-15 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/80727 - * transfer.c (read_sf_internal): Remove bogus code to detect EOR. - (read_block_form): For internal units, generate EOR if no more - bytes left in unit and we are trying to read with ADVANCE='NO'. - -2017-05-15 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR fortran/80765 - * m4/matmul_internal.m4: Set bystride to correct value in - vector-matrix multiplicatin for later calculation of buffer - size. - * generated/matmul_c10.c: Regenerated. - * generated/matmul_c16.c: Regenerated. - * generated/matmul_c4.c: Regenerated. - * generated/matmul_c8.c: Regenerated. - * generated/matmul_i1.c: Regenerated. - * generated/matmul_i16.c: Regenerated. - * generated/matmul_i2.c: Regenerated. - * generated/matmul_i4.c: Regenerated. - * generated/matmul_i8.c: Regenerated. - * generated/matmul_r10.c: Regenerated. - * generated/matmul_r16.c: Regenerated. - * generated/matmul_r4.c: Regenerated. - * generated/matmul_r8.c: Regenerated. - -2017-05-12 Thomas Schwinge <thomas@codesourcery.com> - - * runtime/environ.c (weak_secure_getenv): Fix "__secure_gettime" - vs. "__secure_getenv" typo. - (secure_getenv): Fix "HAVE__SECURE_GETENV" - vs. "HAVE___SECURE_GETENV" typo. - -2017-05-11 Janne Blomqvist <jb@gcc.gnu.org> - - * libgfortran.h: HAVE_SECURE_GETENV: Don't check - HAVE___SECURE_GETENV. - * environ/runtime.c (secure_getenv): Use __secure_getenv via a - weak reference. - -2017-05-10 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR fortran/80687 - PR fortran/80696 - * m4/matmul_internal.m4: 'matmul_name`: Always - use malloc/free to allocate t1. - * generated/matmul_c10.c: Regenerated. - * generated/matmul_c16.c: Regenerated. - * generated/matmul_c4.c: Regenerated. - * generated/matmul_c8.c: Regenerated. - * generated/matmul_i1.c: Regenerated. - * generated/matmul_i16.c: Regenerated. - * generated/matmul_i2.c: Regenerated. - * generated/matmul_i4.c: Regenerated. - * generated/matmul_i8.c: Regenerated. - * generated/matmul_r10.c: Regenerated. - * generated/matmul_r16.c: Regenerated. - * generated/matmul_r4.c: Regenerated. - * generated/matmul_r8.c: Regenerated. - -2017-05-08 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR fortran/80602 - * m4/matmul_internal.m4: 'matmul_name`: Change - t1 to a VLA of the required size. - * generated/matmul_c10.c: Regenerated. - * generated/matmul_c16.c: Regenerated. - * generated/matmul_c4.c: Regenerated. - * generated/matmul_c8.c: Regenerated. - * generated/matmul_i1.c: Regenerated. - * generated/matmul_i16.c: Regenerated. - * generated/matmul_i2.c: Regenerated. - * generated/matmul_i4.c: Regenerated. - * generated/matmul_i8.c: Regenerated. - * generated/matmul_r10.c: Regenerated. - * generated/matmul_r16.c: Regenerated. - * generated/matmul_r4.c: Regenerated. - * generated/matmul_r8.c: Regenerated. - -2017-04-11 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - * close.c: Fix white space in pointer declarations and comment - formats where applicable. - * fbuf.c: Likewise. - * fbuf.h: Likewise. - * format.c: Likewise. - * inquire.c: Likewise. - * intrinsics.c: Likewise. - * list_read.c: Likewise. - * lock.c: Likewise. - * open.c: Likewise. - * read.c: Likewise. - * transfer.c: Likewise. - * unit.c: Likewise. - * unix.c: Likewise. - * unix.h: Likewise. - * write.c: Likewise. - -2017-03-29 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/78670 - * io/list_read.c (nml_get_obj_data): Delete code which calls the - child read procedure. (nml_read_obj): Insert the code which - calls the child procedure. Don't need to touch nodes if using - dtio since parent will not be traversing the components. - -2017-03-28 Janus Weil <janus@gcc.gnu.org> - - PR fortran/78661 - * io/write.c (nml_write_obj): Build a class container only if necessary. - -2017-03-27 Dominique d'Humieres <dominiq@lps.ens.fr> - - * io/list_read.c: Insert /* Fall through. */ in the macro - CASE_SEPARATORS in order to silence warnings. - -2017-03-25 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/78881 - * io/io.h (st_parameter_dt): Rename unused component last_char to - child_saved_iostat. Move comment to gfc_unit. - * io/list_read.c (list_formatted_read_scalar): After call to - child READ procedure, save the returned iostat value for later - check. (finish_list_read): Only finish READ if child_saved_iostat - was OK. - * io/transfer.c (read_sf_internal): If there is a saved character - in last character, seek back one. Add a new check for EOR - condition. (read_sf): If there is a saved character - in last character, seek back one. (formatted_transfer_scalar_read): - Initialize last character before invoking child procedure. - (data_transfer_init): If child dtio, set advance - status to nonadvancing. Move update of size and check for EOR - condition to before child dtio return. - -2017-03-17 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR libfortran/79956 - * m4/reshape.m4 (reshape_'rtype_ccode`): Correct use - of GFC_ASSERT. - * generated/reshape_c10.c: Regenerated. - * generated/reshape_c16.c: Regenerated. - * generated/reshape_c4.c: Regenerated. - * generated/reshape_c8.c: Regenerated. - * generated/reshape_i16.c: Regenerated. - * generated/reshape_i4.c: Regenerated. - * generated/reshape_i8.c: Regenerated. - * generated/reshape_r10.c: Regenerated. - * generated/reshape_r16.c: Regenerated. - * generated/reshape_r4.c: Regenerated. - * generated/reshape_r8.c: Regenerated. - -2017-03-15 NightStrike <nightstrike@gmail.com> - Janne Blomqvist <jb@gcc.gnu.org> - - * intrinsics/random.c (getosrandom): Remove check for __CYGWIN__ - preprocessor flag. - * intrinsics/system_clock.c: Likewise. - (system_clock_4): Likewise. - (system_clock_8): Likewise. - * intrinsics/time_1.h: Don't include windows.h if __CYGWIN__ is - defined. - -2017-03-10 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR libfortran/79956 - * libgfortran.h (GFC_ASSERT): New macro. - * m4/reshape.m4 (reshape_'rtype_ccode`): Use GFC_ASSERT - to specify that sdim > 0 and rdim > 0. - * intrinsic/reshape_generic.c (reshape_internal): Likweise. - * generated/reshape_c10.c: Regenerated. - * generated/reshape_c16.c: Regenerated. - * generated/reshape_c4.c: Regenerated. - * generated/reshape_c8.c: Regenerated. - * generated/reshape_i16.c: Regenerated. - * generated/reshape_i4.c: Regenerated. - * generated/reshape_i8.c: Regenerated. - * generated/reshape_r10.c: Regenerated. - * generated/reshape_r16.c: Regenerated. - * generated/reshape_r4.c: Regenerated. - * generated/reshape_r8.c: Regenerated. - -2017-03-11 Jerry DeLisle <jvdelisle@gcc.gnu.org> - - PR libgfortran/78854 - * io/list_read.c (nml_get_obj_data): Stash internal unit for - later use by child procedures. - * io/write.c (nml_write_obj): Likewise. - * io/tranfer.c (data_transfer_init): Minor whitespace. - * io/unit.c (set_internal_uit): Look for the stashed internal - unit and use it if found. - -2017-03-10 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR libfortran/79956 - * m4/iforeach.m4: Change exit condition from loop for - increasing dimension to >=. Fix type in comment. - * m4/ifunction.m4: Likewise. - * m4/ifunction_logical.m4: Likewise. - * generated/all_l1.c: Regenerated. - * generated/all_l16.c: Regenerated. - * generated/all_l2.c: Regenerated. - * generated/all_l4.c: Regenerated. - * generated/all_l8.c: Regenerated. - * generated/any_l1.c: Regenerated. - * generated/any_l16.c: Regenerated. - * generated/any_l2.c: Regenerated. - * generated/any_l4.c: Regenerated. - * generated/any_l8.c: Regenerated. - * generated/count_16_l.c: Regenerated. - * generated/count_1_l.c: Regenerated. - * generated/count_2_l.c: Regenerated. - * generated/count_4_l.c: Regenerated. - * generated/count_8_l.c: Regenerated. - * generated/iall_i1.c: Regenerated. - * generated/iall_i16.c: Regenerated. - * generated/iall_i2.c: Regenerated. - * generated/iall_i4.c: Regenerated. - * generated/iall_i8.c: Regenerated. - * generated/iany_i1.c: Regenerated. - * generated/iany_i16.c: Regenerated. - * generated/iany_i2.c: Regenerated. - * generated/iany_i4.c: Regenerated. - * generated/iany_i8.c: Regenerated. - * generated/iparity_i1.c: Regenerated. - * generated/iparity_i16.c: Regenerated. - * generated/iparity_i2.c: Regenerated. - * generated/iparity_i4.c: Regenerated. - * generated/iparity_i8.c: Regenerated. - * generated/maxloc0_16_i1.c: Regenerated. - * generated/maxloc0_16_i16.c: Regenerated. - * generated/maxloc0_16_i2.c: Regenerated. - * generated/maxloc0_16_i4.c: Regenerated. - * generated/maxloc0_16_i8.c: Regenerated. - * generated/maxloc0_16_r10.c: Regenerated. - * generated/maxloc0_16_r16.c: Regenerated. - * generated/maxloc0_16_r4.c: Regenerated. - * generated/maxloc0_16_r8.c: Regenerated. - * generated/maxloc0_4_i1.c: Regenerated. - * generated/maxloc0_4_i16.c: Regenerated. - * generated/maxloc0_4_i2.c: Regenerated. - * generated/maxloc0_4_i4.c: Regenerated. - * generated/maxloc0_4_i8.c: Regenerated. - * generated/maxloc0_4_r10.c: Regenerated. - * generated/maxloc0_4_r16.c: Regenerated. - * generated/maxloc0_4_r4.c: Regenerated. - * generated/maxloc0_4_r8.c: Regenerated. - * generated/maxloc0_8_i1.c: Regenerated. - * generated/maxloc0_8_i16.c: Regenerated. - * generated/maxloc0_8_i2.c: Regenerated. - * generated/maxloc0_8_i4.c: Regenerated. - * generated/maxloc0_8_i8.c: Regenerated. - * generated/maxloc0_8_r10.c: Regenerated. - * generated/maxloc0_8_r16.c: Regenerated. - * generated/maxloc0_8_r4.c: Regenerated. - * generated/maxloc0_8_r8.c: Regenerated. - * generated/maxloc1_16_i1.c: Regenerated. - * generated/maxloc1_16_i16.c: Regenerated. - * generated/maxloc1_16_i2.c: Regenerated. - * generated/maxloc1_16_i4.c: Regenerated. - * generated/maxloc1_16_i8.c: Regenerated. - * generated/maxloc1_16_r10.c: Regenerated. - * generated/maxloc1_16_r16.c: Regenerated. - * generated/maxloc1_16_r4.c: Regenerated. - * generated/maxloc1_16_r8.c: Regenerated. - * generated/maxloc1_4_i1.c: Regenerated. - * generated/maxloc1_4_i16.c: Regenerated. - * generated/maxloc1_4_i2.c: Regenerated. - * generated/maxloc1_4_i4.c: Regenerated. - * generated/maxloc1_4_i8.c: Regenerated. - * generated/maxloc1_4_r10.c: Regenerated. - * generated/maxloc1_4_r16.c: Regenerated. - * generated/maxloc1_4_r4.c: Regenerated. - * generated/maxloc1_4_r8.c: Regenerated. - * generated/maxloc1_8_i1.c: Regenerated. - * generated/maxloc1_8_i16.c: Regenerated. - * generated/maxloc1_8_i2.c: Regenerated. - * generated/maxloc1_8_i4.c: Regenerated. - * generated/maxloc1_8_i8.c: Regenerated. - * generated/maxloc1_8_r10.c: Regenerated. - * generated/maxloc1_8_r16.c: Regenerated. - * generated/maxloc1_8_r4.c: Regenerated. - * generated/maxloc1_8_r8.c: Regenerated. - * generated/maxval_i1.c: Regenerated. - * generated/maxval_i16.c: Regenerated. - * generated/maxval_i2.c: Regenerated. - * generated/maxval_i4.c: Regenerated. - * generated/maxval_i8.c: Regenerated. - * generated/maxval_r10.c: Regenerated. - * generated/maxval_r16.c: Regenerated. - * generated/maxval_r4.c: Regenerated. - * generated/maxval_r8.c: Regenerated. - * generated/minloc0_16_i1.c: Regenerated. - * generated/minloc0_16_i16.c: Regenerated. - * generated/minloc0_16_i2.c: Regenerated. - * generated/minloc0_16_i4.c: Regenerated. - * generated/minloc0_16_i8.c: Regenerated. - * generated/minloc0_16_r10.c: Regenerated. - * generated/minloc0_16_r16.c: Regenerated. - * generated/minloc0_16_r4.c: Regenerated. - * generated/minloc0_16_r8.c: Regenerated. - * generated/minloc0_4_i1.c: Regenerated. - * generated/minloc0_4_i16.c: Regenerated. - * generated/minloc0_4_i2.c: Regenerated. - * generated/minloc0_4_i4.c: Regenerated. - * generated/minloc0_4_i8.c: Regenerated. - * generated/minloc0_4_r10.c: Regenerated. - * generated/minloc0_4_r16.c: Regenerated. - * generated/minloc0_4_r4.c: Regenerated. - * generated/minloc0_4_r8.c: Regenerated. - * generated/minloc0_8_i1.c: Regenerated. - * generated/minloc0_8_i16.c: Regenerated. - * generated/minloc0_8_i2.c: Regenerated. - * generated/minloc0_8_i4.c: Regenerated. - * generated/minloc0_8_i8.c: Regenerated. - * generated/minloc0_8_r10.c: Regenerated. - * generated/minloc0_8_r16.c: Regenerated. - * generated/minloc0_8_r4.c: Regenerated. - * generated/minloc0_8_r8.c: Regenerated. - * generated/minloc1_16_i1.c: Regenerated. - * generated/minloc1_16_i16.c: Regenerated. - * generated/minloc1_16_i2.c: Regenerated. - * generated/minloc1_16_i4.c: Regenerated. - * generated/minloc1_16_i8.c: Regenerated. - * generated/minloc1_16_r10.c: Regenerated. - * generated/minloc1_16_r16.c: Regenerated. - * generated/minloc1_16_r4.c: Regenerated. - * generated/minloc1_16_r8.c: Regenerated. - * generated/minloc1_4_i1.c: Regenerated. - * generated/minloc1_4_i16.c: Regenerated. - * generated/minloc1_4_i2.c: Regenerated. - * generated/minloc1_4_i4.c: Regenerated. - * generated/minloc1_4_i8.c: Regenerated. - * generated/minloc1_4_r10.c: Regenerated. - * generated/minloc1_4_r16.c: Regenerated. - * generated/minloc1_4_r4.c: Regenerated. - * generated/minloc1_4_r8.c: Regenerated. - * generated/minloc1_8_i1.c: Regenerated. - * generated/minloc1_8_i16.c: Regenerated. - * generated/minloc1_8_i2.c: Regenerated. - * generated/minloc1_8_i4.c: Regenerated. - * generated/minloc1_8_i8.c: Regenerated. - * generated/minloc1_8_r10.c: Regenerated. - * generated/minloc1_8_r16.c: Regenerated. - * generated/minloc1_8_r4.c: Regenerated. - * generated/minloc1_8_r8.c: Regenerated. - * generated/minval_i1.c: Regenerated. - * generated/minval_i16.c: Regenerated. - * generated/minval_i2.c: Regenerated. - * generated/minval_i4.c: Regenerated. - * generated/minval_i8.c: Regenerated. - * generated/minval_r10.c: Regenerated. - * generated/minval_r16.c: Regenerated. - * generated/minval_r4.c: Regenerated. - * generated/minval_r8.c: Regenerated. - * generated/norm2_r10.c: Regenerated. - * generated/norm2_r16.c: Regenerated. - * generated/norm2_r4.c: Regenerated. - * generated/norm2_r8.c: Regenerated. - * generated/parity_l1.c: Regenerated. - * generated/parity_l16.c: Regenerated. - * generated/parity_l2.c: Regenerated. - * generated/parity_l4.c: Regenerated. - * generated/parity_l8.c: Regenerated. - * generated/product_c10.c: Regenerated. - * generated/product_c16.c: Regenerated. - * generated/product_c4.c: Regenerated. - * generated/product_c8.c: Regenerated. - * generated/product_i1.c: Regenerated. - * generated/product_i16.c: Regenerated. - * generated/product_i2.c: Regenerated. - * generated/product_i4.c: Regenerated. - * generated/product_i8.c: Regenerated. - * generated/product_r10.c: Regenerated. - * generated/product_r16.c: Regenerated. - * generated/product_r4.c: Regenerated. - * generated/product_r8.c: Regenerated. - * generated/sum_c10.c: Regenerated. - * generated/sum_c16.c: Regenerated. - * generated/sum_c4.c: Regenerated. - * generated/sum_c8.c: Regenerated. - * generated/sum_i1.c: Regenerated. - * generated/sum_i16.c: Regenerated. - * generated/sum_i2.c: Regenerated. - * generated/sum_i4.c: Regenerated. - * generated/sum_i8.c: Regenerated. - * generated/sum_r10.c: Regenerated. - * generated/sum_r16.c: Regenerated. - * generated/sum_r4.c: Regenerated. - * generated/sum_r8.c: Regenerated. - -2017-03-05 Andre Vehreschild <vehre@gcc.gnu.org> - Alessandro Fanfarillo <fanfarillo.gcc@gmail.com> - - * caf/libcaf.h: Added prototypes and stat codes for failed and stopped - images. - * caf/single.c (void _gfortran_caf_fail_image): Add the routine. - (int _gfortran_caf_image_status): Same. - (_gfortran_caf_failed_images): Same. - (_gfortran_caf_stopped_images): Same. - -2017-03-02 Thomas Koenig <tkoenig@gcc.gnu.org> - Jakub Jelinek <jakub@redhat.com> - - * m4/matmul.m4 (matmul_'rtype_code`): Avoid - race condition on storing function pointer. - * generated/matmul_c10.c: Regenerated. - * generated/matmul_c16.c: Regenerated. - * generated/matmul_c4.c: Regenerated. - * generated/matmul_c8.c: Regenerated. - * generated/matmul_i1.c: Regenerated. - * generated/matmul_i16.c: Regenerated. - * generated/matmul_i2.c: Regenerated. - * generated/matmul_i4.c: Regenerated. - * generated/matmul_i8.c: Regenerated. - * generated/matmul_r10.c: Regenerated. - * generated/matmul_r16.c: Regenerated. - * generated/matmul_r4.c: Regenerated. - * generated/matmul_r8.c: Regenerated. - -2017-03-02 Thomas Koenig <tkoenig@gcc.gnu.org> - - PR fortran/78379 - * m4/matmul.m4: (matmul_'rtype_code`_avx2): Also generate for - reals. Add fma to target options. - (matmul_'rtype_code`): Call AVX2 only if FMA is available. - * generated/matmul_c10.c: Regenerated. - * generated/matmul_c16.c: Regenerated. - * generated/matmul_c4.c: Regenerated. - * generated/matmul_c8.c: Regenerated. - * generated/matmul_i1.c: Regenerated. - * generated/matmul_i16.c: Regenerated. - * generated/matmul_i2.c: Regenerated. - * generated/matmul_i4.c: Regenerated. - * generated/matmul_i8.c: Regenerated. - * generated/matmul_r10.c: Regenerated. - * generated/matmul_r16.c: Regenerated. - * generated/matmul_r4.c: Regenerated. - * generated/matmul_r8.c: Regenerated. - -2017-02-27 Janne Blomqvist <jb@gcc.gnu.org> - - * intrinsics/random.c (getosrandom): Don't try to use rand_s on - CYGWIN. - -2017-02-16 Paul Thomas <pault@gcc.gnu.org> - - PR fortran/79382 - * io/transfer.c (check_dtio_proc): New function. - (formatted_transfer_scalar_read): Use it. - (formatted_transfer_scalar_write): ditto. - -2017-01-31 Steven G. Kargl <kargl@gcc.gnu.org> - - PR fortran/79305 - * c99_protos.h: Spell HAVE_EXPL correctly. - * intrinsics/c99_functions.c: Ditto. - -2017-01-19 Uros Bizjak <ubizjak@gmail.com> - - PR target/78478 - * acinclude.m4: Include ../config/ax_check_define.m4 - * configure.ac: Check if _SOFT_FLOAT is defined. - * configure.host (i?86 | x86_64): Use fpu-generic when - have_soft_float is set. - * configure: Regenerate. - -2017-01-19 Jakub Jelinek <jakub@redhat.com> - - PR target/79127 - * acinclude.m4 (LIBGFOR_CHECK_AVX512F): Ensure the test clobbers - some zmm16+ registers to verify they are handled by unwind info - properly if needed. - * configure: Regenerated. - -2017-01-17 Jakub Jelinek <jakub@redhat.com> - - PR other/79046 - * configure.ac: Add GCC_BASE_VER. - * Makefile.am (gcc_version): Use @get_gcc_base_ver@ instead of cat to - get version from BASE-VER file. - * configure: Regenerated. - * Makefile.in: Regenerated. - -2017-01-13 Andre Vehreschild <vehre@gcc.gnu.org> - - PR fortran/70696 - * caf/single.c (_gfortran_caf_register): Allocate enough memory for - the event counter. - -2017-01-07 Andre Vehreschild <vehre@gcc.gnu.org> - - PR fortran/78781 - PR fortran/78935 - * caf/single.c (send_by_ref): Fix addressing of non-allocatable scalar - destination components. - -2017-01-01 Jakub Jelinek <jakub@redhat.com> - - Update copyright years. -Copyright (C) 2017 Free Software Foundation, Inc. +Copyright (C) 2018 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright diff --git a/libgfortran/ChangeLog-2017 b/libgfortran/ChangeLog-2017 new file mode 100644 index 0000000..8a7b66c --- /dev/null +++ b/libgfortran/ChangeLog-2017 @@ -0,0 +1,1147 @@ +2017-12-29 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/83613 + * io/unit.c (init_units): Don't forget to unlock the unit locks + after being inserted. + +2017-12-29 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/83560 + * io/write.c (write_integer): Modify to use write_decimal. + For namelist mode, suppress leading blanks and emit them as + trailing blanks. Change parameter from len to kind for better + readability. (nml_write_obj): Fix comment style. + +2017-12-16 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/81937 + * io/list_read.c (next_char_internal): Don't attempt to read + from the internal unit stream if no bytes are left. Decrement + bytes_left in the right place. + +2017-12-12 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/78549 + * io/inquire.c (inquire_via_unit): Adjust test for existence for + pre-connected internal units. + * io/transfer.c (finalize_transfer): When done with a transfer + to internal units, free the format buffer and close the stream. + (st_read_done): Delete freeing the stream, now handled using + sclose in finalize_transfer. (st_write_done): Likewise. + * io/unit.c (get_unit): Return NULL for special reserved unit + numbers, signifying not accessible to the user. + (init_units): Insert the two special internal units into the + unit treap. This makes these unit structures available without + further allocations for later use by internal unit I/O. These + units are automatically deleted by normal program termination. + * io/unix.c (mem_close): Add a guard check to protect from double free. + +2017-12-03 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/36313 + * Makefile.am: Add new files for character-valued + maxval and minval. + * Makefile.in: Regenerated. + * gfortran.map: Add new functions. + * m4/iforeach-s2.m4: New file. + * m4/ifunction-s2.m4: New file. + * m4/iparm.m4: Add intitval for minval and maxval. + * m4/maxval0s.m4: New file. + * m4/maxval1s.m4: New file. + * m4/minval0s.m4: New file. + * m4/minval1s.m4: New file. + * generated/maxval0_s1.c: New file. + * generated/maxval0_s4.c: New file. + * generated/maxval1_s1.c: New file. + * generated/maxval1_s4.c: New file. + * generated/minval0_s1.c: New file. + * generated/minval0_s4.c: New file. + * generated/minval1_s1.c: New file. + * generated/minval1_s4.c: New file. + +2017-12-03 Jerry DeLisle <jvdelisle@gcc.gnu.org> + Dominique d'Humieres <dominiq@lps.ens.fr> + + PR libgfortran/83191 + * io/transfer.c (list_formatted_read_scalar): Do not set + namelist_mode bit here. (namelist_read): Likewise. + (data_transfer_init): Clear the mode bit here. + (finalize_transfer): Do set the mode bit just before any calls + to namelist_read or namelist_write. It can now be referred to + in complex_write. + * io/write.c (write_complex): Suppress the leading blanks when + namelist_mode bit is not set to 1. + +2017-12-02 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/83225 + * io/io.h (is_internal_unit): Use the unit_is_internal bit. + * io/transfer.c (data_transfer_init): Set the bit to true for + internal units. Use that bit for checks for internal unit + initializations. + * io/unit.c (insert_unit): As a precaution, set the + internal_unit_kind to zero when a unit structure is first created. + +2017-11-28 Janne Blomqvist <jb@gcc.gnu.org> + + PR fortran/53796 + * io/inquire.c (inquire_via_unit): Set recl to -1 for unconnected + units. + * io/io.h (default_recl): New variable. + * io/open.c (new_unit): Set recl to default_recl for sequential, + -2 for stream access. + * io/transfer.c (read_block_form): Test against default_recl + instead of DEFAULT_RECL. + (write_block): Likewise. + * io/unit.c (init_units): Calculate max_offset, default_recl. + * libgfortran.h (DEFAULT_RECL): Remove. + * runtime/environ.c: Remove GFORTRAN_DEFAULT_RECL. + +2017-11-28 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/83168 + * io/write.c (select_string): Bump size by one to avoid + overrun. + +2017-11-24 Janne Blomqvist <jb@gcc.gnu.org> + + PR fortran/36313 + * m4/maxloc2s.m4: Replace int with gfc_charlen_type, take 3. + * m4/minloc2s.m4: Likewise. + * generated/maxloc2_16_s1.c: Regenerated. + * generated/maxloc2_16_s4.c: Regenerated. + * generated/maxloc2_4_s1.c: Regenerated. + * generated/maxloc2_4_s4.c: Regenerated. + * generated/maxloc2_8_s1.c: Regenerated. + * generated/maxloc2_8_s4.c: Regenerated. + * generated/minloc2_16_s1.c: Regenerated. + * generated/minloc2_16_s4.c: Regenerated. + * generated/minloc2_4_s1.c: Regenerated. + * generated/minloc2_4_s4.c: Regenerated. + * generated/minloc2_8_s1.c: Regenerated. + * generated/minloc2_8_s4.c: Regenerated. + +2017-11-23 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/36313 + * m4/maxloc2s.m4: Replace int for character length by + gfc_charlen_type. + * m4/minloc2s.m4: Likewise. + * generated./maxloc2_16_s1.c: Regenerated. + * generated./maxloc2_16_s4.c: Regenerated. + * generated./maxloc2_4_s1.c: Regenerated. + * generated./maxloc2_4_s4.c: Regenerated. + * generated./maxloc2_8_s1.c: Regenerated. + * generated./maxloc2_8_s4.c: Regenerated. + * generated./minloc2_16_s1.c: Regenerated. + * generated./minloc2_16_s4.c: Regenerated. + * generated./minloc2_4_s1.c: Regenerated. + * generated./minloc2_4_s4.c: Regenerated. + * generated./minloc2_8_s1.c: Regenerated. + * generated./minloc2_8_s4.c: Regenerated. + +2017-11-22 Janne Blomqvist <jb@gcc.gnu.org> + + * intrinsics/eoshift0.c (eoshift0): Make shift an index_type. + * intrinsics/eoshift2.c (eoshift2): Make shift an index_type. + +2017-11-22 Janne Blomqvist <jb@gcc.gnu.org> + + PR libfortran/83097 + * io/inquire.c (inquire_via_unit): Use __BYTE_ORDER__ predefined + macro. + * io/open.c (st_open): Likewise. + * io/transfer.c (data_transfer_init): Likewise. + * io/write.c (btoa_big): Likewise. + (otoa_big): Likewise. + (ztoa_big): Likewise. + * libgfortran.h (big_endian): Remove variable. + (GFOR_POINTER_TO_L1): Use __BYTE_ORDER__ macro. + * runtime/main.c (determine_endianness): Remove function. + (init): Remove call to determine_endianness. + * runtime/minimal.c: Remove setting big_endian variable. + +2017-11-22 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/36313 + * Makefile.am: Add i_maxloc0s_c, i_maxloc1s_c, i_maxloc2s_c, + i_minloc0s_c, i_minloc1s_c and i_minloc2s_c. + * Makefile.in: Regenerated. + * generated/maxloc0_16_s1.c: New file. + * generated/maxloc0_16_s4.c: New file. + * generated/maxloc0_4_s1.c: New file. + * generated/maxloc0_4_s4.c: New file. + * generated/maxloc0_8_s1.c: New file. + * generated/maxloc0_8_s4.c: New file. + * generated/maxloc1_16_s1.c: New file. + * generated/maxloc1_16_s4.c: New file. + * generated/maxloc1_4_s1.c: New file. + * generated/maxloc1_4_s4.c: New file. + * generated/maxloc1_8_s1.c: New file. + * generated/maxloc1_8_s4.c: New file. + * generated/maxloc2_16_s1.c: New file. + * generated/maxloc2_16_s4.c: New file. + * generated/maxloc2_4_s1.c: New file. + * generated/maxloc2_4_s4.c: New file. + * generated/maxloc2_8_s1.c: New file. + * generated/maxloc2_8_s4.c: New file. + * generated/minloc0_16_s1.c: New file. + * generated/minloc0_16_s4.c: New file. + * generated/minloc0_4_s1.c: New file. + * generated/minloc0_4_s4.c: New file. + * generated/minloc0_8_s1.c: New file. + * generated/minloc0_8_s4.c: New file. + * generated/minloc1_16_s1.c: New file. + * generated/minloc1_16_s4.c: New file. + * generated/minloc1_4_s1.c: New file. + * generated/minloc1_4_s4.c: New file. + * generated/minloc1_8_s1.c: New file. + * generated/minloc1_8_s4.c: New file. + * generated/minloc2_16_s1.c: New file. + * generated/minloc2_16_s4.c: New file. + * generated/minloc2_4_s1.c: New file. + * generated/minloc2_4_s4.c: New file. + * generated/minloc2_8_s1.c: New file. + * generated/minloc2_8_s4.c: New file. + * m4/iforeach-s.m4: New file. + * m4/ifunction-s.m4: New file. + * m4/maxloc0s.m4: New file. + * m4/maxloc1s.m4: New file. + * m4/maxloc2s.m4: New file. + * m4/minloc0s.m4: New file. + * m4/minloc1s.m4: New file. + * m4/minloc2s.m4: New file. + * gfortran.map: Add new functions. + * libgfortran.h: Add gfc_array_s1 and gfc_array_s4. + +2017-11-22 Janne Blomqvist <jb@gcc.gnu.org> + + PR libfortran/83070 + * intrinsics/eoshift0.c (eoshift0): Fix -Wsign-compare warning by + making a_ex and r_ex index_type instead of size_t. + +2017-11-20 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/78549 + * io/io.h (newunit_free): Add declaration. Clean some whitespace. + * io/transfer.c (st_read_done, st_write_done): Call newunit_free. + * io/unit.c (newunit_free): Change type from static void to void. + +2017-11-19 Janne Blomqvist <jb@gcc.gnu.org> + + PR fortran/44292 + * io/transfer.c (skip_record): Use gfc_offset to handle large + records. + (next_record_r): Likewise. + (sset): Likewise. + (next_record_w): Use gfc_offset/ptrdiff_t appropriately. + +2017-11-18 Janne Blomqvist <jb@gcc.gnu.org> + + PR fortran/83036 + * io/io.h: Make nextrec a GFC_IO_INT*. + +2017-11-18 Janne Blomqvist <jb@gcc.gnu.org> + + PR fortran/44292 + * io/io.h: Make recl_in a GC_IO_INT and recl_out a type + GFC_IO_INT*. + +2017-11-17 Igor Tsimbalist <igor.v.tsimbalist@intel.com> + + * acinclude.m4: Add enable.m4, cet.m4. + * Makefile.in: Regenerate. + * configure: Likewise. + * configure.ac: Set CET_FLAGS. Update AM_FCFLAGS, + AM_CFLAGS, CFLAGS. + +2017-10-27 Jerry DeLisle <jvdelisle@gcc.gnu.org> + Rimvydas (RJ) + + PR libgfortran/81938 + io/format.c (free_format_data): Don't try to free vlist + descriptors past the end of the fnode array. + +2017-10-10 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR libfortran/82233 + * intrinsics/execute_command_line.c (execute_command_line): + No call to runtime_error if cmdstat is present. + +2017-09-24 Dominique d'Humieres <dominiq@lps.ens.fr> + + PR libgfortran/79612 + * runtime/bounds.c: Use GFC_ASSERT. + +2017-09-10 Paul Thomas <pault@gcc.gnu.org> + + PR fortran/34640 + * libgfortran/libgfortran.h: Add span field to descriptor. + * libgfortran/libtool-version : Bump up version number to 5:0:0. + +2017-08-27 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/78387 + * io/list_read.c (nml_read_obj): Remove use of stash. + * io/transfer.c (st_read_done, st_write_done): Likewise. + * io/unit.c (stash_internal_unit): Delete function. + (get_unit): Remove use of stash. + (init_units): Likewise. + (close_units): Likewise. + * io/write.c (nml_write_obj): Likewise: + +2017-07-31 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/81581 + * m4/ifuntion.m4 (name`'rtype_qual`_'atype_code): Perform check + for dim. + (`m'name`'rtype_qual`_'atype_code): Likewise. Change type of rank + and tim to index_type. + (`s'name`'rtype_qual`_'atype_code): Perform check for dim. + * generated/iall_i16.c: Regenerated. + * generated/iall_i1.c: Regenerated. + * generated/iall_i2.c: Regenerated. + * generated/iall_i4.c: Regenerated. + * generated/iall_i8.c: Regenerated. + * generated/iany_i16.c: Regenerated. + * generated/iany_i1.c: Regenerated. + * generated/iany_i2.c: Regenerated. + * generated/iany_i4.c: Regenerated. + * generated/iany_i8.c: Regenerated. + * generated/iparity_i16.c: Regenerated. + * generated/iparity_i1.c: Regenerated. + * generated/iparity_i2.c: Regenerated. + * generated/iparity_i4.c: Regenerated. + * generated/iparity_i8.c: Regenerated. + * generated/maxloc1_16_i16.c: Regenerated. + * generated/maxloc1_16_i1.c: Regenerated. + * generated/maxloc1_16_i2.c: Regenerated. + * generated/maxloc1_16_i4.c: Regenerated. + * generated/maxloc1_16_i8.c: Regenerated. + * generated/maxloc1_16_r10.c: Regenerated. + * generated/maxloc1_16_r16.c: Regenerated. + * generated/maxloc1_16_r4.c: Regenerated. + * generated/maxloc1_16_r8.c: Regenerated. + * generated/maxloc1_4_i16.c: Regenerated. + * generated/maxloc1_4_i1.c: Regenerated. + * generated/maxloc1_4_i2.c: Regenerated. + * generated/maxloc1_4_i4.c: Regenerated. + * generated/maxloc1_4_i8.c: Regenerated. + * generated/maxloc1_4_r10.c: Regenerated. + * generated/maxloc1_4_r16.c: Regenerated. + * generated/maxloc1_4_r4.c: Regenerated. + * generated/maxloc1_4_r8.c: Regenerated. + * generated/maxloc1_8_i16.c: Regenerated. + * generated/maxloc1_8_i1.c: Regenerated. + * generated/maxloc1_8_i2.c: Regenerated. + * generated/maxloc1_8_i4.c: Regenerated. + * generated/maxloc1_8_i8.c: Regenerated. + * generated/maxloc1_8_r10.c: Regenerated. + * generated/maxloc1_8_r16.c: Regenerated. + * generated/maxloc1_8_r4.c: Regenerated. + * generated/maxloc1_8_r8.c: Regenerated. + * generated/maxval_i16.c: Regenerated. + * generated/maxval_i1.c: Regenerated. + * generated/maxval_i2.c: Regenerated. + * generated/maxval_i4.c: Regenerated. + * generated/maxval_i8.c: Regenerated. + * generated/maxval_r10.c: Regenerated. + * generated/maxval_r16.c: Regenerated. + * generated/maxval_r4.c: Regenerated. + * generated/maxval_r8.c: Regenerated. + * generated/minloc1_16_i16.c: Regenerated. + * generated/minloc1_16_i1.c: Regenerated. + * generated/minloc1_16_i2.c: Regenerated. + * generated/minloc1_16_i4.c: Regenerated. + * generated/minloc1_16_i8.c: Regenerated. + * generated/minloc1_16_r10.c: Regenerated. + * generated/minloc1_16_r16.c: Regenerated. + * generated/minloc1_16_r4.c: Regenerated. + * generated/minloc1_16_r8.c: Regenerated. + * generated/minloc1_4_i16.c: Regenerated. + * generated/minloc1_4_i1.c: Regenerated. + * generated/minloc1_4_i2.c: Regenerated. + * generated/minloc1_4_i4.c: Regenerated. + * generated/minloc1_4_i8.c: Regenerated. + * generated/minloc1_4_r10.c: Regenerated. + * generated/minloc1_4_r16.c: Regenerated. + * generated/minloc1_4_r4.c: Regenerated. + * generated/minloc1_4_r8.c: Regenerated. + * generated/minloc1_8_i16.c: Regenerated. + * generated/minloc1_8_i1.c: Regenerated. + * generated/minloc1_8_i2.c: Regenerated. + * generated/minloc1_8_i4.c: Regenerated. + * generated/minloc1_8_i8.c: Regenerated. + * generated/minloc1_8_r10.c: Regenerated. + * generated/minloc1_8_r16.c: Regenerated. + * generated/minloc1_8_r4.c: Regenerated. + * generated/minloc1_8_r8.c: Regenerated. + * generated/minval_i16.c: Regenerated. + * generated/minval_i1.c: Regenerated. + * generated/minval_i2.c: Regenerated. + * generated/minval_i4.c: Regenerated. + * generated/minval_i8.c: Regenerated. + * generated/minval_r10.c: Regenerated. + * generated/minval_r16.c: Regenerated. + * generated/minval_r4.c: Regenerated. + * generated/minval_r8.c: Regenerated. + * generated/norm2_r10.c: Regenerated. + * generated/norm2_r16.c: Regenerated. + * generated/norm2_r4.c: Regenerated. + * generated/norm2_r8.c: Regenerated. + * generated/parity_l16.c: Regenerated. + * generated/parity_l1.c: Regenerated. + * generated/parity_l2.c: Regenerated. + * generated/parity_l4.c: Regenerated. + * generated/parity_l8.c: Regenerated. + * generated/product_c10.c: Regenerated. + * generated/product_c16.c: Regenerated. + * generated/product_c4.c: Regenerated. + * generated/product_c8.c: Regenerated. + * generated/product_i16.c: Regenerated. + * generated/product_i1.c: Regenerated. + * generated/product_i2.c: Regenerated. + * generated/product_i4.c: Regenerated. + * generated/product_i8.c: Regenerated. + * generated/product_r10.c: Regenerated. + * generated/product_r16.c: Regenerated. + * generated/product_r4.c: Regenerated. + * generated/product_r8.c: Regenerated. + * generated/sum_c10.c: Regenerated. + * generated/sum_c16.c: Regenerated. + * generated/sum_c4.c: Regenerated. + * generated/sum_c8.c: Regenerated. + * generated/sum_i16.c: Regenerated. + * generated/sum_i1.c: Regenerated. + * generated/sum_i2.c: Regenerated. + * generated/sum_i4.c: Regenerated. + * generated/sum_i8.c: Regenerated. + * generated/sum_r10.c: Regenerated. + * generated/sum_r16.c: Regenerated. + * generated/sum_r4.c: Regenerated. + * generated/sum_r8.c: Regenerated. + +2017-07-24 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/80365 + * io/unix.c (buf_write): Return early if there is + nothing to write. + +2017-07-09 Thomas Koenig <tkoenig@gcc.gnu.org> + + * intrinsics/eoshift2.c (eoshift2): Use memcpy + for innermost copy where possible. + * m4/eoshift1.m4 (eoshift1): Likewise. + * m4/eoshift3.m4 (eoshift3): Likewise. + * generated/eoshift1_16.c: Regenerated. + * generated/eoshift1_4.c: Regenerated. + * generated/eoshift1_8.c: Regenerated. + * generated/eoshift3_16.c: Regenerated. + * generated/eoshift3_4.c: Regenerated. + * generated/eoshift3_8.c: Regenerated. + +2017-07-02 Thomas Koenig <tkoenig@gcc.gnu.org> + + * intrinsics/eoshift0.c: For contiguous arrays, use + block algorithm. Use memcpy where possible. + +2017-06-26 Jim Wilson <jim.wilson@r3-a15.aus-colo> + + PR libfortran/81195 + * io/unit.c (get_unit): Call __gthread_mutex_lock before newunit_stack + and newunit_tos references. Call __gthread_mutex_unlock afterward. + +2017-06-24 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/52473 + * Makefile.am: Add i_cshift1a_c. Add rules to generate files + from cshift1a.m4. + * Makefile.in: Regenerated. + * m4/cshift1a.m4: New file. + * m4/cshift.m4 (cshift1): Split up inner loop by removing + condition. Use memcpy where possible. Call helper functions + based on dtype. + * libgfortran.h: Add prototypes for cshift1_16_c10, + cshift1_16_c16, cshift1_16_c4, cshift1_16_c8, cshift1_16_i1, + cshift1_16_i16, cshift1_16_i2, cshift1_16_i4, cshift1_16_i8, + cshift1_16_r10, cshift1_16_r16, cshift1_16_r4, cshift1_16_r8, + cshift1_4_c10, cshift1_4_c16, cshift1_4_c4, cshift1_4_c8, + cshift1_4_i1, cshift1_4_i16, cshift1_4_i2, cshift1_4_i4, + cshift1_4_i8, cshift1_4_r10, cshift1_4_r16, cshift1_4_r4, + cshift1_4_r8, cshift1_8_c10, cshift1_8_c16, cshift1_8_c4, + cshift1_8_c8, cshift1_8_i1, cshift1_8_i16, cshift1_8_i2, + cshift1_8_i4, cshift1_8_i8, cshift1_8_r10, cshift1_8_r16, + cshift1_8_r4 and cshift1_8_r8. + * generated/cshift1_16_c10.c: New file, generated from cshift1a.m4. + * generated/cshift1_16_c16.c: New file, generated from cshift1a.m4. + * generated/cshift1_16_c4.c: New file, generated from cshift1a.m4. + * generated/cshift1_16_c8.c: New file, generated from cshift1a.m4. + * generated/cshift1_16_i1.c: New file, generated from cshift1a.m4. + * generated/cshift1_16_i16.c: New file, generated from cshift1a.m4. + * generated/cshift1_16_i2.c: New file, generated from cshift1a.m4. + * generated/cshift1_16_i4.c: New file, generated from cshift1a.m4. + * generated/cshift1_16_i8.c: New file, generated from cshift1a.m4. + * generated/cshift1_16_r10.c: New file, generated from cshift1a.m4. + * generated/cshift1_16_r16.c: New file, generated from cshift1a.m4. + * generated/cshift1_16_r4.c: New file, generated from cshift1a.m4. + * generated/cshift1_16_r8.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_c10.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_c16.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_c4.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_c8.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_i1.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_i16.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_i2.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_i4.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_i8.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_r10.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_r16.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_r4.c: New file, generated from cshift1a.m4. + * generated/cshift1_4_r8.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_c10.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_c16.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_c4.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_c8.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_i1.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_i16.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_i2.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_i4.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_i8.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_r10.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_r16.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_r4.c: New file, generated from cshift1a.m4. + * generated/cshift1_8_r8.c: New file, generated from cshift1a.m4. + +2017-06-18 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/52473 + * m4/cshift0.m4: For arrays that are contiguous up to + shift, implement blocked algorighm for cshift. + * generated/cshift0_c10.c: Regenerated. + * generated/cshift0_c16.c: Regenerated. + * generated/cshift0_c4.c: Regenerated. + * generated/cshift0_c8.c: Regenerated. + * generated/cshift0_i1.c: Regenerated. + * generated/cshift0_i16.c: Regenerated. + * generated/cshift0_i2.c: Regenerated. + * generated/cshift0_i4.c: Regenerated. + * generated/cshift0_i8.c: Regenerated. + * generated/cshift0_r10.c: Regenerated. + * generated/cshift0_r16.c: Regenerated. + * generated/cshift0_r4.c: Regenerated. + * generated/cshift0_r8.c: Regenerated. + +2017-06-06 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/80975 + * m4/matmul_internal.m4: Move zeroing before early return. + * generated/matmul_c10.c: Regenerated. + * generated/matmul_c16.c: Regenerated. + * generated/matmul_c4.c: Regenerated. + * generated/matmul_c8.c: Regenerated. + * generated/matmul_i1.c: Regenerated. + * generated/matmul_i16.c: Regenerated. + * generated/matmul_i2.c: Regenerated. + * generated/matmul_i4.c: Regenerated. + * generated/matmul_i8.c: Regenerated. + * generated/matmul_r10.c: Regenerated. + * generated/matmul_r16.c: Regenerated. + * generated/matmul_r4.c: Regenerated. + * generated/matmul_r8.c: Regenerated. + * generated/matmulavx128_c10.c: Regenerated. + * generated/matmulavx128_c16.c: Regenerated. + * generated/matmulavx128_c4.c: Regenerated. + * generated/matmulavx128_c8.c: Regenerated. + * generated/matmulavx128_i1.c: Regenerated. + * generated/matmulavx128_i16.c: Regenerated. + * generated/matmulavx128_i2.c: Regenerated. + * generated/matmulavx128_i4.c: Regenerated. + * generated/matmulavx128_i8.c: Regenerated. + * generated/matmulavx128_r10.c: Regenerated. + * generated/matmulavx128_r16.c: Regenerated. + * generated/matmulavx128_r4.c: Regenerated. + * generated/matmulavx128_r8.c: Regenerated. + +2017-05-29 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/53029 + * list_read.c (list_formatted_read_scala): Set the err return + value to the common.flags error values. + +2017-05-28 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * acinclude.m4 (LIBGFOR_CHECK_FMA3): Use test from + check_effective_target_fma in gcc.target/i386/i386.exp. + (LIBGFOR_CHECK_FMA4): Use test from check_effective_target_fma4. + * configure: Regenerate. + +2017-05-26 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR boostrap/80889 + * acinclude.m4: Also set HAVE_AVX128 on the false + branch of LIBGFOR_CHECK_AVX128. + * configure: Regenerated. + +2017-05-25 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR libfortran/78379 + * Makefile.am: Add generated/matmulavx128_*.c files. + Handle them for compiling and setting the right flags. + * acinclude.m4: Add tests for FMA3, FMA4 and AVX128. + * configure.ac: Call them. + * Makefile.in: Regenerated. + * config.h.in: Regenerated. + * configure: Regenerated. + * m4/matmul.m4: Handle AMD chips by calling 128-bit AVX + versions which use FMA3 or FMA4. + * m4/matmulavx128.m4: New file. + * generated/matmul_c10.c: Regenerated. + * generated/matmul_c16.c: Regenerated. + * generated/matmul_c4.c: Regenerated. + * generated/matmul_c8.c: Regenerated. + * generated/matmul_i1.c: Regenerated. + * generated/matmul_i16.c: Regenerated. + * generated/matmul_i2.c: Regenerated. + * generated/matmul_i4.c: Regenerated. + * generated/matmul_i8.c: Regenerated. + * generated/matmul_r10.c: Regenerated. + * generated/matmul_r16.c: Regenerated. + * generated/matmul_r4.c: Regenerated. + * generated/matmul_r8.c: Regenerated. + * generated/matmulavx128_c10.c: New file. + * generated/matmulavx128_c16.c: New file. + * generated/matmulavx128_c4.c: New file. + * generated/matmulavx128_c8.c: New file. + * generated/matmulavx128_i1.c: New file. + * generated/matmulavx128_i16.c: New file. + * generated/matmulavx128_i2.c: New file. + * generated/matmulavx128_i4.c: New file. + * generated/matmulavx128_i8.c: New file. + * generated/matmulavx128_r10.c: New file. + * generated/matmulavx128_r16.c: New file. + * generated/matmulavx128_r4.c: New file. + * generated/matmulavx128_r8.c: New file. + +2017-05-19 Paul Thomas <pault@gcc.gnu.org> + Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR fortran/80333 + * list_read.c (nml_read_obj): Compute pointer into class/type + arrays from the nl->dim information. Update it for each iteration + of the loop for the given object. + +2017-05-17 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/80741 + * transfer.c (finalize_transfer): Reset last_char to 'empty'. + * file_pos.c (formatted_backspace): Likewise. + (st_endfile): Likewise. + (st_rewind): Likewise. + (st_flush): Likewise. + +2017-05-15 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/80727 + * transfer.c (read_sf_internal): Remove bogus code to detect EOR. + (read_block_form): For internal units, generate EOR if no more + bytes left in unit and we are trying to read with ADVANCE='NO'. + +2017-05-15 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/80765 + * m4/matmul_internal.m4: Set bystride to correct value in + vector-matrix multiplicatin for later calculation of buffer + size. + * generated/matmul_c10.c: Regenerated. + * generated/matmul_c16.c: Regenerated. + * generated/matmul_c4.c: Regenerated. + * generated/matmul_c8.c: Regenerated. + * generated/matmul_i1.c: Regenerated. + * generated/matmul_i16.c: Regenerated. + * generated/matmul_i2.c: Regenerated. + * generated/matmul_i4.c: Regenerated. + * generated/matmul_i8.c: Regenerated. + * generated/matmul_r10.c: Regenerated. + * generated/matmul_r16.c: Regenerated. + * generated/matmul_r4.c: Regenerated. + * generated/matmul_r8.c: Regenerated. + +2017-05-12 Thomas Schwinge <thomas@codesourcery.com> + + * runtime/environ.c (weak_secure_getenv): Fix "__secure_gettime" + vs. "__secure_getenv" typo. + (secure_getenv): Fix "HAVE__SECURE_GETENV" + vs. "HAVE___SECURE_GETENV" typo. + +2017-05-11 Janne Blomqvist <jb@gcc.gnu.org> + + * libgfortran.h: HAVE_SECURE_GETENV: Don't check + HAVE___SECURE_GETENV. + * environ/runtime.c (secure_getenv): Use __secure_getenv via a + weak reference. + +2017-05-10 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/80687 + PR fortran/80696 + * m4/matmul_internal.m4: 'matmul_name`: Always + use malloc/free to allocate t1. + * generated/matmul_c10.c: Regenerated. + * generated/matmul_c16.c: Regenerated. + * generated/matmul_c4.c: Regenerated. + * generated/matmul_c8.c: Regenerated. + * generated/matmul_i1.c: Regenerated. + * generated/matmul_i16.c: Regenerated. + * generated/matmul_i2.c: Regenerated. + * generated/matmul_i4.c: Regenerated. + * generated/matmul_i8.c: Regenerated. + * generated/matmul_r10.c: Regenerated. + * generated/matmul_r16.c: Regenerated. + * generated/matmul_r4.c: Regenerated. + * generated/matmul_r8.c: Regenerated. + +2017-05-08 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/80602 + * m4/matmul_internal.m4: 'matmul_name`: Change + t1 to a VLA of the required size. + * generated/matmul_c10.c: Regenerated. + * generated/matmul_c16.c: Regenerated. + * generated/matmul_c4.c: Regenerated. + * generated/matmul_c8.c: Regenerated. + * generated/matmul_i1.c: Regenerated. + * generated/matmul_i16.c: Regenerated. + * generated/matmul_i2.c: Regenerated. + * generated/matmul_i4.c: Regenerated. + * generated/matmul_i8.c: Regenerated. + * generated/matmul_r10.c: Regenerated. + * generated/matmul_r16.c: Regenerated. + * generated/matmul_r4.c: Regenerated. + * generated/matmul_r8.c: Regenerated. + +2017-04-11 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + * close.c: Fix white space in pointer declarations and comment + formats where applicable. + * fbuf.c: Likewise. + * fbuf.h: Likewise. + * format.c: Likewise. + * inquire.c: Likewise. + * intrinsics.c: Likewise. + * list_read.c: Likewise. + * lock.c: Likewise. + * open.c: Likewise. + * read.c: Likewise. + * transfer.c: Likewise. + * unit.c: Likewise. + * unix.c: Likewise. + * unix.h: Likewise. + * write.c: Likewise. + +2017-03-29 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/78670 + * io/list_read.c (nml_get_obj_data): Delete code which calls the + child read procedure. (nml_read_obj): Insert the code which + calls the child procedure. Don't need to touch nodes if using + dtio since parent will not be traversing the components. + +2017-03-28 Janus Weil <janus@gcc.gnu.org> + + PR fortran/78661 + * io/write.c (nml_write_obj): Build a class container only if necessary. + +2017-03-27 Dominique d'Humieres <dominiq@lps.ens.fr> + + * io/list_read.c: Insert /* Fall through. */ in the macro + CASE_SEPARATORS in order to silence warnings. + +2017-03-25 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/78881 + * io/io.h (st_parameter_dt): Rename unused component last_char to + child_saved_iostat. Move comment to gfc_unit. + * io/list_read.c (list_formatted_read_scalar): After call to + child READ procedure, save the returned iostat value for later + check. (finish_list_read): Only finish READ if child_saved_iostat + was OK. + * io/transfer.c (read_sf_internal): If there is a saved character + in last character, seek back one. Add a new check for EOR + condition. (read_sf): If there is a saved character + in last character, seek back one. (formatted_transfer_scalar_read): + Initialize last character before invoking child procedure. + (data_transfer_init): If child dtio, set advance + status to nonadvancing. Move update of size and check for EOR + condition to before child dtio return. + +2017-03-17 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR libfortran/79956 + * m4/reshape.m4 (reshape_'rtype_ccode`): Correct use + of GFC_ASSERT. + * generated/reshape_c10.c: Regenerated. + * generated/reshape_c16.c: Regenerated. + * generated/reshape_c4.c: Regenerated. + * generated/reshape_c8.c: Regenerated. + * generated/reshape_i16.c: Regenerated. + * generated/reshape_i4.c: Regenerated. + * generated/reshape_i8.c: Regenerated. + * generated/reshape_r10.c: Regenerated. + * generated/reshape_r16.c: Regenerated. + * generated/reshape_r4.c: Regenerated. + * generated/reshape_r8.c: Regenerated. + +2017-03-15 NightStrike <nightstrike@gmail.com> + Janne Blomqvist <jb@gcc.gnu.org> + + * intrinsics/random.c (getosrandom): Remove check for __CYGWIN__ + preprocessor flag. + * intrinsics/system_clock.c: Likewise. + (system_clock_4): Likewise. + (system_clock_8): Likewise. + * intrinsics/time_1.h: Don't include windows.h if __CYGWIN__ is + defined. + +2017-03-10 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR libfortran/79956 + * libgfortran.h (GFC_ASSERT): New macro. + * m4/reshape.m4 (reshape_'rtype_ccode`): Use GFC_ASSERT + to specify that sdim > 0 and rdim > 0. + * intrinsic/reshape_generic.c (reshape_internal): Likweise. + * generated/reshape_c10.c: Regenerated. + * generated/reshape_c16.c: Regenerated. + * generated/reshape_c4.c: Regenerated. + * generated/reshape_c8.c: Regenerated. + * generated/reshape_i16.c: Regenerated. + * generated/reshape_i4.c: Regenerated. + * generated/reshape_i8.c: Regenerated. + * generated/reshape_r10.c: Regenerated. + * generated/reshape_r16.c: Regenerated. + * generated/reshape_r4.c: Regenerated. + * generated/reshape_r8.c: Regenerated. + +2017-03-11 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/78854 + * io/list_read.c (nml_get_obj_data): Stash internal unit for + later use by child procedures. + * io/write.c (nml_write_obj): Likewise. + * io/tranfer.c (data_transfer_init): Minor whitespace. + * io/unit.c (set_internal_uit): Look for the stashed internal + unit and use it if found. + +2017-03-10 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR libfortran/79956 + * m4/iforeach.m4: Change exit condition from loop for + increasing dimension to >=. Fix type in comment. + * m4/ifunction.m4: Likewise. + * m4/ifunction_logical.m4: Likewise. + * generated/all_l1.c: Regenerated. + * generated/all_l16.c: Regenerated. + * generated/all_l2.c: Regenerated. + * generated/all_l4.c: Regenerated. + * generated/all_l8.c: Regenerated. + * generated/any_l1.c: Regenerated. + * generated/any_l16.c: Regenerated. + * generated/any_l2.c: Regenerated. + * generated/any_l4.c: Regenerated. + * generated/any_l8.c: Regenerated. + * generated/count_16_l.c: Regenerated. + * generated/count_1_l.c: Regenerated. + * generated/count_2_l.c: Regenerated. + * generated/count_4_l.c: Regenerated. + * generated/count_8_l.c: Regenerated. + * generated/iall_i1.c: Regenerated. + * generated/iall_i16.c: Regenerated. + * generated/iall_i2.c: Regenerated. + * generated/iall_i4.c: Regenerated. + * generated/iall_i8.c: Regenerated. + * generated/iany_i1.c: Regenerated. + * generated/iany_i16.c: Regenerated. + * generated/iany_i2.c: Regenerated. + * generated/iany_i4.c: Regenerated. + * generated/iany_i8.c: Regenerated. + * generated/iparity_i1.c: Regenerated. + * generated/iparity_i16.c: Regenerated. + * generated/iparity_i2.c: Regenerated. + * generated/iparity_i4.c: Regenerated. + * generated/iparity_i8.c: Regenerated. + * generated/maxloc0_16_i1.c: Regenerated. + * generated/maxloc0_16_i16.c: Regenerated. + * generated/maxloc0_16_i2.c: Regenerated. + * generated/maxloc0_16_i4.c: Regenerated. + * generated/maxloc0_16_i8.c: Regenerated. + * generated/maxloc0_16_r10.c: Regenerated. + * generated/maxloc0_16_r16.c: Regenerated. + * generated/maxloc0_16_r4.c: Regenerated. + * generated/maxloc0_16_r8.c: Regenerated. + * generated/maxloc0_4_i1.c: Regenerated. + * generated/maxloc0_4_i16.c: Regenerated. + * generated/maxloc0_4_i2.c: Regenerated. + * generated/maxloc0_4_i4.c: Regenerated. + * generated/maxloc0_4_i8.c: Regenerated. + * generated/maxloc0_4_r10.c: Regenerated. + * generated/maxloc0_4_r16.c: Regenerated. + * generated/maxloc0_4_r4.c: Regenerated. + * generated/maxloc0_4_r8.c: Regenerated. + * generated/maxloc0_8_i1.c: Regenerated. + * generated/maxloc0_8_i16.c: Regenerated. + * generated/maxloc0_8_i2.c: Regenerated. + * generated/maxloc0_8_i4.c: Regenerated. + * generated/maxloc0_8_i8.c: Regenerated. + * generated/maxloc0_8_r10.c: Regenerated. + * generated/maxloc0_8_r16.c: Regenerated. + * generated/maxloc0_8_r4.c: Regenerated. + * generated/maxloc0_8_r8.c: Regenerated. + * generated/maxloc1_16_i1.c: Regenerated. + * generated/maxloc1_16_i16.c: Regenerated. + * generated/maxloc1_16_i2.c: Regenerated. + * generated/maxloc1_16_i4.c: Regenerated. + * generated/maxloc1_16_i8.c: Regenerated. + * generated/maxloc1_16_r10.c: Regenerated. + * generated/maxloc1_16_r16.c: Regenerated. + * generated/maxloc1_16_r4.c: Regenerated. + * generated/maxloc1_16_r8.c: Regenerated. + * generated/maxloc1_4_i1.c: Regenerated. + * generated/maxloc1_4_i16.c: Regenerated. + * generated/maxloc1_4_i2.c: Regenerated. + * generated/maxloc1_4_i4.c: Regenerated. + * generated/maxloc1_4_i8.c: Regenerated. + * generated/maxloc1_4_r10.c: Regenerated. + * generated/maxloc1_4_r16.c: Regenerated. + * generated/maxloc1_4_r4.c: Regenerated. + * generated/maxloc1_4_r8.c: Regenerated. + * generated/maxloc1_8_i1.c: Regenerated. + * generated/maxloc1_8_i16.c: Regenerated. + * generated/maxloc1_8_i2.c: Regenerated. + * generated/maxloc1_8_i4.c: Regenerated. + * generated/maxloc1_8_i8.c: Regenerated. + * generated/maxloc1_8_r10.c: Regenerated. + * generated/maxloc1_8_r16.c: Regenerated. + * generated/maxloc1_8_r4.c: Regenerated. + * generated/maxloc1_8_r8.c: Regenerated. + * generated/maxval_i1.c: Regenerated. + * generated/maxval_i16.c: Regenerated. + * generated/maxval_i2.c: Regenerated. + * generated/maxval_i4.c: Regenerated. + * generated/maxval_i8.c: Regenerated. + * generated/maxval_r10.c: Regenerated. + * generated/maxval_r16.c: Regenerated. + * generated/maxval_r4.c: Regenerated. + * generated/maxval_r8.c: Regenerated. + * generated/minloc0_16_i1.c: Regenerated. + * generated/minloc0_16_i16.c: Regenerated. + * generated/minloc0_16_i2.c: Regenerated. + * generated/minloc0_16_i4.c: Regenerated. + * generated/minloc0_16_i8.c: Regenerated. + * generated/minloc0_16_r10.c: Regenerated. + * generated/minloc0_16_r16.c: Regenerated. + * generated/minloc0_16_r4.c: Regenerated. + * generated/minloc0_16_r8.c: Regenerated. + * generated/minloc0_4_i1.c: Regenerated. + * generated/minloc0_4_i16.c: Regenerated. + * generated/minloc0_4_i2.c: Regenerated. + * generated/minloc0_4_i4.c: Regenerated. + * generated/minloc0_4_i8.c: Regenerated. + * generated/minloc0_4_r10.c: Regenerated. + * generated/minloc0_4_r16.c: Regenerated. + * generated/minloc0_4_r4.c: Regenerated. + * generated/minloc0_4_r8.c: Regenerated. + * generated/minloc0_8_i1.c: Regenerated. + * generated/minloc0_8_i16.c: Regenerated. + * generated/minloc0_8_i2.c: Regenerated. + * generated/minloc0_8_i4.c: Regenerated. + * generated/minloc0_8_i8.c: Regenerated. + * generated/minloc0_8_r10.c: Regenerated. + * generated/minloc0_8_r16.c: Regenerated. + * generated/minloc0_8_r4.c: Regenerated. + * generated/minloc0_8_r8.c: Regenerated. + * generated/minloc1_16_i1.c: Regenerated. + * generated/minloc1_16_i16.c: Regenerated. + * generated/minloc1_16_i2.c: Regenerated. + * generated/minloc1_16_i4.c: Regenerated. + * generated/minloc1_16_i8.c: Regenerated. + * generated/minloc1_16_r10.c: Regenerated. + * generated/minloc1_16_r16.c: Regenerated. + * generated/minloc1_16_r4.c: Regenerated. + * generated/minloc1_16_r8.c: Regenerated. + * generated/minloc1_4_i1.c: Regenerated. + * generated/minloc1_4_i16.c: Regenerated. + * generated/minloc1_4_i2.c: Regenerated. + * generated/minloc1_4_i4.c: Regenerated. + * generated/minloc1_4_i8.c: Regenerated. + * generated/minloc1_4_r10.c: Regenerated. + * generated/minloc1_4_r16.c: Regenerated. + * generated/minloc1_4_r4.c: Regenerated. + * generated/minloc1_4_r8.c: Regenerated. + * generated/minloc1_8_i1.c: Regenerated. + * generated/minloc1_8_i16.c: Regenerated. + * generated/minloc1_8_i2.c: Regenerated. + * generated/minloc1_8_i4.c: Regenerated. + * generated/minloc1_8_i8.c: Regenerated. + * generated/minloc1_8_r10.c: Regenerated. + * generated/minloc1_8_r16.c: Regenerated. + * generated/minloc1_8_r4.c: Regenerated. + * generated/minloc1_8_r8.c: Regenerated. + * generated/minval_i1.c: Regenerated. + * generated/minval_i16.c: Regenerated. + * generated/minval_i2.c: Regenerated. + * generated/minval_i4.c: Regenerated. + * generated/minval_i8.c: Regenerated. + * generated/minval_r10.c: Regenerated. + * generated/minval_r16.c: Regenerated. + * generated/minval_r4.c: Regenerated. + * generated/minval_r8.c: Regenerated. + * generated/norm2_r10.c: Regenerated. + * generated/norm2_r16.c: Regenerated. + * generated/norm2_r4.c: Regenerated. + * generated/norm2_r8.c: Regenerated. + * generated/parity_l1.c: Regenerated. + * generated/parity_l16.c: Regenerated. + * generated/parity_l2.c: Regenerated. + * generated/parity_l4.c: Regenerated. + * generated/parity_l8.c: Regenerated. + * generated/product_c10.c: Regenerated. + * generated/product_c16.c: Regenerated. + * generated/product_c4.c: Regenerated. + * generated/product_c8.c: Regenerated. + * generated/product_i1.c: Regenerated. + * generated/product_i16.c: Regenerated. + * generated/product_i2.c: Regenerated. + * generated/product_i4.c: Regenerated. + * generated/product_i8.c: Regenerated. + * generated/product_r10.c: Regenerated. + * generated/product_r16.c: Regenerated. + * generated/product_r4.c: Regenerated. + * generated/product_r8.c: Regenerated. + * generated/sum_c10.c: Regenerated. + * generated/sum_c16.c: Regenerated. + * generated/sum_c4.c: Regenerated. + * generated/sum_c8.c: Regenerated. + * generated/sum_i1.c: Regenerated. + * generated/sum_i16.c: Regenerated. + * generated/sum_i2.c: Regenerated. + * generated/sum_i4.c: Regenerated. + * generated/sum_i8.c: Regenerated. + * generated/sum_r10.c: Regenerated. + * generated/sum_r16.c: Regenerated. + * generated/sum_r4.c: Regenerated. + * generated/sum_r8.c: Regenerated. + +2017-03-05 Andre Vehreschild <vehre@gcc.gnu.org> + Alessandro Fanfarillo <fanfarillo.gcc@gmail.com> + + * caf/libcaf.h: Added prototypes and stat codes for failed and stopped + images. + * caf/single.c (void _gfortran_caf_fail_image): Add the routine. + (int _gfortran_caf_image_status): Same. + (_gfortran_caf_failed_images): Same. + (_gfortran_caf_stopped_images): Same. + +2017-03-02 Thomas Koenig <tkoenig@gcc.gnu.org> + Jakub Jelinek <jakub@redhat.com> + + * m4/matmul.m4 (matmul_'rtype_code`): Avoid + race condition on storing function pointer. + * generated/matmul_c10.c: Regenerated. + * generated/matmul_c16.c: Regenerated. + * generated/matmul_c4.c: Regenerated. + * generated/matmul_c8.c: Regenerated. + * generated/matmul_i1.c: Regenerated. + * generated/matmul_i16.c: Regenerated. + * generated/matmul_i2.c: Regenerated. + * generated/matmul_i4.c: Regenerated. + * generated/matmul_i8.c: Regenerated. + * generated/matmul_r10.c: Regenerated. + * generated/matmul_r16.c: Regenerated. + * generated/matmul_r4.c: Regenerated. + * generated/matmul_r8.c: Regenerated. + +2017-03-02 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/78379 + * m4/matmul.m4: (matmul_'rtype_code`_avx2): Also generate for + reals. Add fma to target options. + (matmul_'rtype_code`): Call AVX2 only if FMA is available. + * generated/matmul_c10.c: Regenerated. + * generated/matmul_c16.c: Regenerated. + * generated/matmul_c4.c: Regenerated. + * generated/matmul_c8.c: Regenerated. + * generated/matmul_i1.c: Regenerated. + * generated/matmul_i16.c: Regenerated. + * generated/matmul_i2.c: Regenerated. + * generated/matmul_i4.c: Regenerated. + * generated/matmul_i8.c: Regenerated. + * generated/matmul_r10.c: Regenerated. + * generated/matmul_r16.c: Regenerated. + * generated/matmul_r4.c: Regenerated. + * generated/matmul_r8.c: Regenerated. + +2017-02-27 Janne Blomqvist <jb@gcc.gnu.org> + + * intrinsics/random.c (getosrandom): Don't try to use rand_s on + CYGWIN. + +2017-02-16 Paul Thomas <pault@gcc.gnu.org> + + PR fortran/79382 + * io/transfer.c (check_dtio_proc): New function. + (formatted_transfer_scalar_read): Use it. + (formatted_transfer_scalar_write): ditto. + +2017-01-31 Steven G. Kargl <kargl@gcc.gnu.org> + + PR fortran/79305 + * c99_protos.h: Spell HAVE_EXPL correctly. + * intrinsics/c99_functions.c: Ditto. + +2017-01-19 Uros Bizjak <ubizjak@gmail.com> + + PR target/78478 + * acinclude.m4: Include ../config/ax_check_define.m4 + * configure.ac: Check if _SOFT_FLOAT is defined. + * configure.host (i?86 | x86_64): Use fpu-generic when + have_soft_float is set. + * configure: Regenerate. + +2017-01-19 Jakub Jelinek <jakub@redhat.com> + + PR target/79127 + * acinclude.m4 (LIBGFOR_CHECK_AVX512F): Ensure the test clobbers + some zmm16+ registers to verify they are handled by unwind info + properly if needed. + * configure: Regenerated. + +2017-01-17 Jakub Jelinek <jakub@redhat.com> + + PR other/79046 + * configure.ac: Add GCC_BASE_VER. + * Makefile.am (gcc_version): Use @get_gcc_base_ver@ instead of cat to + get version from BASE-VER file. + * configure: Regenerated. + * Makefile.in: Regenerated. + +2017-01-13 Andre Vehreschild <vehre@gcc.gnu.org> + + PR fortran/70696 + * caf/single.c (_gfortran_caf_register): Allocate enough memory for + the event counter. + +2017-01-07 Andre Vehreschild <vehre@gcc.gnu.org> + + PR fortran/78781 + PR fortran/78935 + * caf/single.c (send_by_ref): Fix addressing of non-allocatable scalar + destination components. + +2017-01-01 Jakub Jelinek <jakub@redhat.com> + + Update copyright years. + +Copyright (C) 2017 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. diff --git a/libgfortran/c99_protos.h b/libgfortran/c99_protos.h index 7680c6f..c7be494 100644 --- a/libgfortran/c99_protos.h +++ b/libgfortran/c99_protos.h @@ -1,5 +1,5 @@ /* Declarations of various C99 functions - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/caf/libcaf.h b/libgfortran/caf/libcaf.h index 2472646..12c73de 100644 --- a/libgfortran/caf/libcaf.h +++ b/libgfortran/caf/libcaf.h @@ -1,5 +1,5 @@ /* Common declarations for all of GNU Fortran libcaf implementations. - Copyright (C) 2011-2017 Free Software Foundation, Inc. + Copyright (C) 2011-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran Coarray Runtime Library (libcaf). diff --git a/libgfortran/caf/mpi.c b/libgfortran/caf/mpi.c index ec65725..0f7977f 100644 --- a/libgfortran/caf/mpi.c +++ b/libgfortran/caf/mpi.c @@ -1,5 +1,5 @@ /* MPI implementation of GNU Fortran Coarray Library - Copyright (C) 2011-2017 Free Software Foundation, Inc. + Copyright (C) 2011-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran Coarray Runtime Library (libcaf). diff --git a/libgfortran/caf/single.c b/libgfortran/caf/single.c index bf1a229..8911752 100644 --- a/libgfortran/caf/single.c +++ b/libgfortran/caf/single.c @@ -1,5 +1,5 @@ /* Single-image implementation of GNU Fortran Coarray Library - Copyright (C) 2011-2017 Free Software Foundation, Inc. + Copyright (C) 2011-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran Coarray Runtime Library (libcaf). diff --git a/libgfortran/config/fpu-387.h b/libgfortran/config/fpu-387.h index b219a65..c6cb873 100644 --- a/libgfortran/config/fpu-387.h +++ b/libgfortran/config/fpu-387.h @@ -1,5 +1,5 @@ /* FPU-related code for x86 and x86_64 processors. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by Francois-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/config/fpu-aix.h b/libgfortran/config/fpu-aix.h index 03266b8..88fdf19 100644 --- a/libgfortran/config/fpu-aix.h +++ b/libgfortran/config/fpu-aix.h @@ -1,5 +1,5 @@ /* AIX FPU-related code. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by Francois-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/config/fpu-generic.h b/libgfortran/config/fpu-generic.h index 1372742..315d348 100644 --- a/libgfortran/config/fpu-generic.h +++ b/libgfortran/config/fpu-generic.h @@ -1,5 +1,5 @@ /* Fallback FPU-related code (for systems not otherwise supported). - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by Francois-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/config/fpu-glibc.h b/libgfortran/config/fpu-glibc.h index a00a153..b928416 100644 --- a/libgfortran/config/fpu-glibc.h +++ b/libgfortran/config/fpu-glibc.h @@ -1,5 +1,5 @@ /* FPU-related code for systems with GNU libc. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by Francois-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/config/fpu-sysv.h b/libgfortran/config/fpu-sysv.h index 603da15..0638d4f 100644 --- a/libgfortran/config/fpu-sysv.h +++ b/libgfortran/config/fpu-sysv.h @@ -1,5 +1,5 @@ /* SysV FPU-related code (for systems not otherwise supported). - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by Francois-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/_abs_c10.F90 b/libgfortran/generated/_abs_c10.F90 index 55ce733..d9c124b 100644 --- a/libgfortran/generated/_abs_c10.F90 +++ b/libgfortran/generated/_abs_c10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_abs_c16.F90 b/libgfortran/generated/_abs_c16.F90 index 927ef79..689be47 100644 --- a/libgfortran/generated/_abs_c16.F90 +++ b/libgfortran/generated/_abs_c16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_abs_c4.F90 b/libgfortran/generated/_abs_c4.F90 index a01f2c7..a652980 100644 --- a/libgfortran/generated/_abs_c4.F90 +++ b/libgfortran/generated/_abs_c4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_abs_c8.F90 b/libgfortran/generated/_abs_c8.F90 index 9798138..979aac3 100644 --- a/libgfortran/generated/_abs_c8.F90 +++ b/libgfortran/generated/_abs_c8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_abs_i16.F90 b/libgfortran/generated/_abs_i16.F90 index 9610b28..5619f57 100644 --- a/libgfortran/generated/_abs_i16.F90 +++ b/libgfortran/generated/_abs_i16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_abs_i4.F90 b/libgfortran/generated/_abs_i4.F90 index 44c1d6c..a5dca0e 100644 --- a/libgfortran/generated/_abs_i4.F90 +++ b/libgfortran/generated/_abs_i4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_abs_i8.F90 b/libgfortran/generated/_abs_i8.F90 index d2cb2b4..545c2b6 100644 --- a/libgfortran/generated/_abs_i8.F90 +++ b/libgfortran/generated/_abs_i8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_abs_r10.F90 b/libgfortran/generated/_abs_r10.F90 index 1e3d3f2..662366b 100644 --- a/libgfortran/generated/_abs_r10.F90 +++ b/libgfortran/generated/_abs_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_abs_r16.F90 b/libgfortran/generated/_abs_r16.F90 index a54c455c..6b994eb 100644 --- a/libgfortran/generated/_abs_r16.F90 +++ b/libgfortran/generated/_abs_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_abs_r4.F90 b/libgfortran/generated/_abs_r4.F90 index 6c5466a..bf44250 100644 --- a/libgfortran/generated/_abs_r4.F90 +++ b/libgfortran/generated/_abs_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_abs_r8.F90 b/libgfortran/generated/_abs_r8.F90 index 3330b77..f184247 100644 --- a/libgfortran/generated/_abs_r8.F90 +++ b/libgfortran/generated/_abs_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_acos_r10.F90 b/libgfortran/generated/_acos_r10.F90 index 6953054..c8f0210 100644 --- a/libgfortran/generated/_acos_r10.F90 +++ b/libgfortran/generated/_acos_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_acos_r16.F90 b/libgfortran/generated/_acos_r16.F90 index 3272b50..21fa21b 100644 --- a/libgfortran/generated/_acos_r16.F90 +++ b/libgfortran/generated/_acos_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_acos_r4.F90 b/libgfortran/generated/_acos_r4.F90 index 61ab3de..f910378 100644 --- a/libgfortran/generated/_acos_r4.F90 +++ b/libgfortran/generated/_acos_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_acos_r8.F90 b/libgfortran/generated/_acos_r8.F90 index cfc1e2e..1974028 100644 --- a/libgfortran/generated/_acos_r8.F90 +++ b/libgfortran/generated/_acos_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_acosh_r10.F90 b/libgfortran/generated/_acosh_r10.F90 index 59d86df..7e7427c 100644 --- a/libgfortran/generated/_acosh_r10.F90 +++ b/libgfortran/generated/_acosh_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_acosh_r16.F90 b/libgfortran/generated/_acosh_r16.F90 index a1d3367..9e30d1e 100644 --- a/libgfortran/generated/_acosh_r16.F90 +++ b/libgfortran/generated/_acosh_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_acosh_r4.F90 b/libgfortran/generated/_acosh_r4.F90 index 12c5a9b..b7a1dc8 100644 --- a/libgfortran/generated/_acosh_r4.F90 +++ b/libgfortran/generated/_acosh_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_acosh_r8.F90 b/libgfortran/generated/_acosh_r8.F90 index dae874c..2b8857d 100644 --- a/libgfortran/generated/_acosh_r8.F90 +++ b/libgfortran/generated/_acosh_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_aimag_c10.F90 b/libgfortran/generated/_aimag_c10.F90 index 131f6a7..49b8f27 100644 --- a/libgfortran/generated/_aimag_c10.F90 +++ b/libgfortran/generated/_aimag_c10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_aimag_c16.F90 b/libgfortran/generated/_aimag_c16.F90 index 567a5fb..ebe0933 100644 --- a/libgfortran/generated/_aimag_c16.F90 +++ b/libgfortran/generated/_aimag_c16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_aimag_c4.F90 b/libgfortran/generated/_aimag_c4.F90 index ed4e2a2..6841cac 100644 --- a/libgfortran/generated/_aimag_c4.F90 +++ b/libgfortran/generated/_aimag_c4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_aimag_c8.F90 b/libgfortran/generated/_aimag_c8.F90 index 690104e..7179558 100644 --- a/libgfortran/generated/_aimag_c8.F90 +++ b/libgfortran/generated/_aimag_c8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_aint_r10.F90 b/libgfortran/generated/_aint_r10.F90 index 705ee8d..6d4f43c 100644 --- a/libgfortran/generated/_aint_r10.F90 +++ b/libgfortran/generated/_aint_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_aint_r16.F90 b/libgfortran/generated/_aint_r16.F90 index 19f1c2b..d7a5605 100644 --- a/libgfortran/generated/_aint_r16.F90 +++ b/libgfortran/generated/_aint_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_aint_r4.F90 b/libgfortran/generated/_aint_r4.F90 index b53b538..07e5537 100644 --- a/libgfortran/generated/_aint_r4.F90 +++ b/libgfortran/generated/_aint_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_aint_r8.F90 b/libgfortran/generated/_aint_r8.F90 index 7c13df4..e96d31e 100644 --- a/libgfortran/generated/_aint_r8.F90 +++ b/libgfortran/generated/_aint_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_anint_r10.F90 b/libgfortran/generated/_anint_r10.F90 index a24bd53..bc0ccdb 100644 --- a/libgfortran/generated/_anint_r10.F90 +++ b/libgfortran/generated/_anint_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_anint_r16.F90 b/libgfortran/generated/_anint_r16.F90 index fb68e27..dd08853 100644 --- a/libgfortran/generated/_anint_r16.F90 +++ b/libgfortran/generated/_anint_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_anint_r4.F90 b/libgfortran/generated/_anint_r4.F90 index 7edb364..6913ec3 100644 --- a/libgfortran/generated/_anint_r4.F90 +++ b/libgfortran/generated/_anint_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_anint_r8.F90 b/libgfortran/generated/_anint_r8.F90 index 88074c6..d29e765 100644 --- a/libgfortran/generated/_anint_r8.F90 +++ b/libgfortran/generated/_anint_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_asin_r10.F90 b/libgfortran/generated/_asin_r10.F90 index 938b4a1..f6a4689 100644 --- a/libgfortran/generated/_asin_r10.F90 +++ b/libgfortran/generated/_asin_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_asin_r16.F90 b/libgfortran/generated/_asin_r16.F90 index 933b22e..befbde2 100644 --- a/libgfortran/generated/_asin_r16.F90 +++ b/libgfortran/generated/_asin_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_asin_r4.F90 b/libgfortran/generated/_asin_r4.F90 index 1295c51..cc7a700 100644 --- a/libgfortran/generated/_asin_r4.F90 +++ b/libgfortran/generated/_asin_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_asin_r8.F90 b/libgfortran/generated/_asin_r8.F90 index 4755ed8..295d68b 100644 --- a/libgfortran/generated/_asin_r8.F90 +++ b/libgfortran/generated/_asin_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_asinh_r10.F90 b/libgfortran/generated/_asinh_r10.F90 index 7cd04c8..2b15841 100644 --- a/libgfortran/generated/_asinh_r10.F90 +++ b/libgfortran/generated/_asinh_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_asinh_r16.F90 b/libgfortran/generated/_asinh_r16.F90 index 3f9bf10..877207a 100644 --- a/libgfortran/generated/_asinh_r16.F90 +++ b/libgfortran/generated/_asinh_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_asinh_r4.F90 b/libgfortran/generated/_asinh_r4.F90 index 74c1117..ccdc920 100644 --- a/libgfortran/generated/_asinh_r4.F90 +++ b/libgfortran/generated/_asinh_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_asinh_r8.F90 b/libgfortran/generated/_asinh_r8.F90 index a3bfaaf..9293e5d 100644 --- a/libgfortran/generated/_asinh_r8.F90 +++ b/libgfortran/generated/_asinh_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_atan2_r10.F90 b/libgfortran/generated/_atan2_r10.F90 index 56c6963..89bfde6 100644 --- a/libgfortran/generated/_atan2_r10.F90 +++ b/libgfortran/generated/_atan2_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_atan2_r16.F90 b/libgfortran/generated/_atan2_r16.F90 index 38bba96..0597f8b 100644 --- a/libgfortran/generated/_atan2_r16.F90 +++ b/libgfortran/generated/_atan2_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_atan2_r4.F90 b/libgfortran/generated/_atan2_r4.F90 index ca1f783..1c7156d 100644 --- a/libgfortran/generated/_atan2_r4.F90 +++ b/libgfortran/generated/_atan2_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_atan2_r8.F90 b/libgfortran/generated/_atan2_r8.F90 index b2ab535..d50571f 100644 --- a/libgfortran/generated/_atan2_r8.F90 +++ b/libgfortran/generated/_atan2_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_atan_r10.F90 b/libgfortran/generated/_atan_r10.F90 index e1a0e3a..881f3a0 100644 --- a/libgfortran/generated/_atan_r10.F90 +++ b/libgfortran/generated/_atan_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_atan_r16.F90 b/libgfortran/generated/_atan_r16.F90 index bbebf8a..fcf0b3f 100644 --- a/libgfortran/generated/_atan_r16.F90 +++ b/libgfortran/generated/_atan_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_atan_r4.F90 b/libgfortran/generated/_atan_r4.F90 index aa9f603..5f4d86b 100644 --- a/libgfortran/generated/_atan_r4.F90 +++ b/libgfortran/generated/_atan_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_atan_r8.F90 b/libgfortran/generated/_atan_r8.F90 index 72a4125..1ada7e9 100644 --- a/libgfortran/generated/_atan_r8.F90 +++ b/libgfortran/generated/_atan_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_atanh_r10.F90 b/libgfortran/generated/_atanh_r10.F90 index 4ce7ce7..f8a2bf5 100644 --- a/libgfortran/generated/_atanh_r10.F90 +++ b/libgfortran/generated/_atanh_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_atanh_r16.F90 b/libgfortran/generated/_atanh_r16.F90 index 5bf3a70..38198f2 100644 --- a/libgfortran/generated/_atanh_r16.F90 +++ b/libgfortran/generated/_atanh_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_atanh_r4.F90 b/libgfortran/generated/_atanh_r4.F90 index 7f6ae54..257809f 100644 --- a/libgfortran/generated/_atanh_r4.F90 +++ b/libgfortran/generated/_atanh_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_atanh_r8.F90 b/libgfortran/generated/_atanh_r8.F90 index fa74196..e557d8b 100644 --- a/libgfortran/generated/_atanh_r8.F90 +++ b/libgfortran/generated/_atanh_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_conjg_c10.F90 b/libgfortran/generated/_conjg_c10.F90 index a1c0631..3733cb2 100644 --- a/libgfortran/generated/_conjg_c10.F90 +++ b/libgfortran/generated/_conjg_c10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_conjg_c16.F90 b/libgfortran/generated/_conjg_c16.F90 index 4fdfe92a..aa084db 100644 --- a/libgfortran/generated/_conjg_c16.F90 +++ b/libgfortran/generated/_conjg_c16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_conjg_c4.F90 b/libgfortran/generated/_conjg_c4.F90 index 00221b8..4c3cc21 100644 --- a/libgfortran/generated/_conjg_c4.F90 +++ b/libgfortran/generated/_conjg_c4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_conjg_c8.F90 b/libgfortran/generated/_conjg_c8.F90 index 3b7c306..9658f5b 100644 --- a/libgfortran/generated/_conjg_c8.F90 +++ b/libgfortran/generated/_conjg_c8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_cos_c10.F90 b/libgfortran/generated/_cos_c10.F90 index 9599311..1bb2917 100644 --- a/libgfortran/generated/_cos_c10.F90 +++ b/libgfortran/generated/_cos_c10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_cos_c16.F90 b/libgfortran/generated/_cos_c16.F90 index 79b53a6..2788b12 100644 --- a/libgfortran/generated/_cos_c16.F90 +++ b/libgfortran/generated/_cos_c16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_cos_c4.F90 b/libgfortran/generated/_cos_c4.F90 index d6993f2..856b25a 100644 --- a/libgfortran/generated/_cos_c4.F90 +++ b/libgfortran/generated/_cos_c4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_cos_c8.F90 b/libgfortran/generated/_cos_c8.F90 index 6179900..70dcd94 100644 --- a/libgfortran/generated/_cos_c8.F90 +++ b/libgfortran/generated/_cos_c8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_cos_r10.F90 b/libgfortran/generated/_cos_r10.F90 index e439346..fa22588 100644 --- a/libgfortran/generated/_cos_r10.F90 +++ b/libgfortran/generated/_cos_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_cos_r16.F90 b/libgfortran/generated/_cos_r16.F90 index 4435c9e..849bebf 100644 --- a/libgfortran/generated/_cos_r16.F90 +++ b/libgfortran/generated/_cos_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_cos_r4.F90 b/libgfortran/generated/_cos_r4.F90 index 9da1176..d6a7517 100644 --- a/libgfortran/generated/_cos_r4.F90 +++ b/libgfortran/generated/_cos_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_cos_r8.F90 b/libgfortran/generated/_cos_r8.F90 index 7098486..393cf2d 100644 --- a/libgfortran/generated/_cos_r8.F90 +++ b/libgfortran/generated/_cos_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_cosh_r10.F90 b/libgfortran/generated/_cosh_r10.F90 index 1ccf488..60163ff 100644 --- a/libgfortran/generated/_cosh_r10.F90 +++ b/libgfortran/generated/_cosh_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_cosh_r16.F90 b/libgfortran/generated/_cosh_r16.F90 index 2c43ac4..58ad77d 100644 --- a/libgfortran/generated/_cosh_r16.F90 +++ b/libgfortran/generated/_cosh_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_cosh_r4.F90 b/libgfortran/generated/_cosh_r4.F90 index f840af0..1aa52ba 100644 --- a/libgfortran/generated/_cosh_r4.F90 +++ b/libgfortran/generated/_cosh_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_cosh_r8.F90 b/libgfortran/generated/_cosh_r8.F90 index 1e50a3e..3287fb7 100644 --- a/libgfortran/generated/_cosh_r8.F90 +++ b/libgfortran/generated/_cosh_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_dim_i16.F90 b/libgfortran/generated/_dim_i16.F90 index 4b46b65..5bff0ca 100644 --- a/libgfortran/generated/_dim_i16.F90 +++ b/libgfortran/generated/_dim_i16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_dim_i4.F90 b/libgfortran/generated/_dim_i4.F90 index 5fb6700..dad7386 100644 --- a/libgfortran/generated/_dim_i4.F90 +++ b/libgfortran/generated/_dim_i4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_dim_i8.F90 b/libgfortran/generated/_dim_i8.F90 index d0ceb5b..897337c 100644 --- a/libgfortran/generated/_dim_i8.F90 +++ b/libgfortran/generated/_dim_i8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_dim_r10.F90 b/libgfortran/generated/_dim_r10.F90 index f112c12..1b07d51 100644 --- a/libgfortran/generated/_dim_r10.F90 +++ b/libgfortran/generated/_dim_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_dim_r16.F90 b/libgfortran/generated/_dim_r16.F90 index c6ffbc9..dab2309 100644 --- a/libgfortran/generated/_dim_r16.F90 +++ b/libgfortran/generated/_dim_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_dim_r4.F90 b/libgfortran/generated/_dim_r4.F90 index 77e1339..84a5743 100644 --- a/libgfortran/generated/_dim_r4.F90 +++ b/libgfortran/generated/_dim_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_dim_r8.F90 b/libgfortran/generated/_dim_r8.F90 index 6faa841..22883d1 100644 --- a/libgfortran/generated/_dim_r8.F90 +++ b/libgfortran/generated/_dim_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_exp_c10.F90 b/libgfortran/generated/_exp_c10.F90 index a6d4fe2..c1b5f06 100644 --- a/libgfortran/generated/_exp_c10.F90 +++ b/libgfortran/generated/_exp_c10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_exp_c16.F90 b/libgfortran/generated/_exp_c16.F90 index fb43b69..42f9e12 100644 --- a/libgfortran/generated/_exp_c16.F90 +++ b/libgfortran/generated/_exp_c16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_exp_c4.F90 b/libgfortran/generated/_exp_c4.F90 index 9cb35f6..5d5e1b4 100644 --- a/libgfortran/generated/_exp_c4.F90 +++ b/libgfortran/generated/_exp_c4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_exp_c8.F90 b/libgfortran/generated/_exp_c8.F90 index 6f6b144..b6333f9 100644 --- a/libgfortran/generated/_exp_c8.F90 +++ b/libgfortran/generated/_exp_c8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_exp_r10.F90 b/libgfortran/generated/_exp_r10.F90 index a9f57fc..9486561 100644 --- a/libgfortran/generated/_exp_r10.F90 +++ b/libgfortran/generated/_exp_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_exp_r16.F90 b/libgfortran/generated/_exp_r16.F90 index 9e2af5b..2234ce8 100644 --- a/libgfortran/generated/_exp_r16.F90 +++ b/libgfortran/generated/_exp_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_exp_r4.F90 b/libgfortran/generated/_exp_r4.F90 index d63234a..1e27fb2 100644 --- a/libgfortran/generated/_exp_r4.F90 +++ b/libgfortran/generated/_exp_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_exp_r8.F90 b/libgfortran/generated/_exp_r8.F90 index 6478ea3..ce1b614 100644 --- a/libgfortran/generated/_exp_r8.F90 +++ b/libgfortran/generated/_exp_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_log10_r10.F90 b/libgfortran/generated/_log10_r10.F90 index a78a7cf..1754066 100644 --- a/libgfortran/generated/_log10_r10.F90 +++ b/libgfortran/generated/_log10_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_log10_r16.F90 b/libgfortran/generated/_log10_r16.F90 index 29ec44c..7344407 100644 --- a/libgfortran/generated/_log10_r16.F90 +++ b/libgfortran/generated/_log10_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_log10_r4.F90 b/libgfortran/generated/_log10_r4.F90 index 49fce7f..9b0ecce 100644 --- a/libgfortran/generated/_log10_r4.F90 +++ b/libgfortran/generated/_log10_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_log10_r8.F90 b/libgfortran/generated/_log10_r8.F90 index aa60e8e..136d3c1 100644 --- a/libgfortran/generated/_log10_r8.F90 +++ b/libgfortran/generated/_log10_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_log_c10.F90 b/libgfortran/generated/_log_c10.F90 index 4d9592a..49c8775 100644 --- a/libgfortran/generated/_log_c10.F90 +++ b/libgfortran/generated/_log_c10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_log_c16.F90 b/libgfortran/generated/_log_c16.F90 index b94d5d1..b99772f 100644 --- a/libgfortran/generated/_log_c16.F90 +++ b/libgfortran/generated/_log_c16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_log_c4.F90 b/libgfortran/generated/_log_c4.F90 index 67972bf..e2ba06df 100644 --- a/libgfortran/generated/_log_c4.F90 +++ b/libgfortran/generated/_log_c4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_log_c8.F90 b/libgfortran/generated/_log_c8.F90 index 9871b93..7518745 100644 --- a/libgfortran/generated/_log_c8.F90 +++ b/libgfortran/generated/_log_c8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_log_r10.F90 b/libgfortran/generated/_log_r10.F90 index c840c49..1f969a8 100644 --- a/libgfortran/generated/_log_r10.F90 +++ b/libgfortran/generated/_log_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_log_r16.F90 b/libgfortran/generated/_log_r16.F90 index 8a31557..26cd98f 100644 --- a/libgfortran/generated/_log_r16.F90 +++ b/libgfortran/generated/_log_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_log_r4.F90 b/libgfortran/generated/_log_r4.F90 index 0152c19..a7bed6c 100644 --- a/libgfortran/generated/_log_r4.F90 +++ b/libgfortran/generated/_log_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_log_r8.F90 b/libgfortran/generated/_log_r8.F90 index 5cc605d..1eed485 100644 --- a/libgfortran/generated/_log_r8.F90 +++ b/libgfortran/generated/_log_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_mod_i16.F90 b/libgfortran/generated/_mod_i16.F90 index 58a6ed2..f17e2fb 100644 --- a/libgfortran/generated/_mod_i16.F90 +++ b/libgfortran/generated/_mod_i16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_mod_i4.F90 b/libgfortran/generated/_mod_i4.F90 index 650505f..128c347 100644 --- a/libgfortran/generated/_mod_i4.F90 +++ b/libgfortran/generated/_mod_i4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_mod_i8.F90 b/libgfortran/generated/_mod_i8.F90 index 3cc97a1..e0ef143 100644 --- a/libgfortran/generated/_mod_i8.F90 +++ b/libgfortran/generated/_mod_i8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_mod_r10.F90 b/libgfortran/generated/_mod_r10.F90 index 9b7ecfe..54f1d91 100644 --- a/libgfortran/generated/_mod_r10.F90 +++ b/libgfortran/generated/_mod_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_mod_r16.F90 b/libgfortran/generated/_mod_r16.F90 index ad0cdfd..895a467 100644 --- a/libgfortran/generated/_mod_r16.F90 +++ b/libgfortran/generated/_mod_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_mod_r4.F90 b/libgfortran/generated/_mod_r4.F90 index 45d502a..a54a3e3 100644 --- a/libgfortran/generated/_mod_r4.F90 +++ b/libgfortran/generated/_mod_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_mod_r8.F90 b/libgfortran/generated/_mod_r8.F90 index cc58e24..fc6fefc 100644 --- a/libgfortran/generated/_mod_r8.F90 +++ b/libgfortran/generated/_mod_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sign_i16.F90 b/libgfortran/generated/_sign_i16.F90 index 5c23244..26d30dc 100644 --- a/libgfortran/generated/_sign_i16.F90 +++ b/libgfortran/generated/_sign_i16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sign_i4.F90 b/libgfortran/generated/_sign_i4.F90 index d6c2911e..e058a5c 100644 --- a/libgfortran/generated/_sign_i4.F90 +++ b/libgfortran/generated/_sign_i4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sign_i8.F90 b/libgfortran/generated/_sign_i8.F90 index a60f129..b57a804 100644 --- a/libgfortran/generated/_sign_i8.F90 +++ b/libgfortran/generated/_sign_i8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sign_r10.F90 b/libgfortran/generated/_sign_r10.F90 index fd354ed..bcbe3a5 100644 --- a/libgfortran/generated/_sign_r10.F90 +++ b/libgfortran/generated/_sign_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sign_r16.F90 b/libgfortran/generated/_sign_r16.F90 index 17eed10b4..1f013e9 100644 --- a/libgfortran/generated/_sign_r16.F90 +++ b/libgfortran/generated/_sign_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sign_r4.F90 b/libgfortran/generated/_sign_r4.F90 index 9c457c2..20decf6 100644 --- a/libgfortran/generated/_sign_r4.F90 +++ b/libgfortran/generated/_sign_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sign_r8.F90 b/libgfortran/generated/_sign_r8.F90 index da872b5..8fa9374 100644 --- a/libgfortran/generated/_sign_r8.F90 +++ b/libgfortran/generated/_sign_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sin_c10.F90 b/libgfortran/generated/_sin_c10.F90 index e643d9b..986b175 100644 --- a/libgfortran/generated/_sin_c10.F90 +++ b/libgfortran/generated/_sin_c10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sin_c16.F90 b/libgfortran/generated/_sin_c16.F90 index 1f7c50a..84cb03d 100644 --- a/libgfortran/generated/_sin_c16.F90 +++ b/libgfortran/generated/_sin_c16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sin_c4.F90 b/libgfortran/generated/_sin_c4.F90 index e54c491..e433a69 100644 --- a/libgfortran/generated/_sin_c4.F90 +++ b/libgfortran/generated/_sin_c4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sin_c8.F90 b/libgfortran/generated/_sin_c8.F90 index 102efe2..248f340 100644 --- a/libgfortran/generated/_sin_c8.F90 +++ b/libgfortran/generated/_sin_c8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sin_r10.F90 b/libgfortran/generated/_sin_r10.F90 index 5fe2950..eddb0b4 100644 --- a/libgfortran/generated/_sin_r10.F90 +++ b/libgfortran/generated/_sin_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sin_r16.F90 b/libgfortran/generated/_sin_r16.F90 index f30ab55..161dc6dd 100644 --- a/libgfortran/generated/_sin_r16.F90 +++ b/libgfortran/generated/_sin_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sin_r4.F90 b/libgfortran/generated/_sin_r4.F90 index ba4f632..d56ba93 100644 --- a/libgfortran/generated/_sin_r4.F90 +++ b/libgfortran/generated/_sin_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sin_r8.F90 b/libgfortran/generated/_sin_r8.F90 index f83e6ec..73add7c 100644 --- a/libgfortran/generated/_sin_r8.F90 +++ b/libgfortran/generated/_sin_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sinh_r10.F90 b/libgfortran/generated/_sinh_r10.F90 index 1c47d0c..5ac36d7 100644 --- a/libgfortran/generated/_sinh_r10.F90 +++ b/libgfortran/generated/_sinh_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sinh_r16.F90 b/libgfortran/generated/_sinh_r16.F90 index 96e7d5a..a9b17a6 100644 --- a/libgfortran/generated/_sinh_r16.F90 +++ b/libgfortran/generated/_sinh_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sinh_r4.F90 b/libgfortran/generated/_sinh_r4.F90 index 2198abb..ea6b169 100644 --- a/libgfortran/generated/_sinh_r4.F90 +++ b/libgfortran/generated/_sinh_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sinh_r8.F90 b/libgfortran/generated/_sinh_r8.F90 index b9d3c7e..0974672 100644 --- a/libgfortran/generated/_sinh_r8.F90 +++ b/libgfortran/generated/_sinh_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sqrt_c10.F90 b/libgfortran/generated/_sqrt_c10.F90 index 6f30095..761b52a 100644 --- a/libgfortran/generated/_sqrt_c10.F90 +++ b/libgfortran/generated/_sqrt_c10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sqrt_c16.F90 b/libgfortran/generated/_sqrt_c16.F90 index 2ea29cf..a9b64ec 100644 --- a/libgfortran/generated/_sqrt_c16.F90 +++ b/libgfortran/generated/_sqrt_c16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sqrt_c4.F90 b/libgfortran/generated/_sqrt_c4.F90 index a0ff044..25bed07 100644 --- a/libgfortran/generated/_sqrt_c4.F90 +++ b/libgfortran/generated/_sqrt_c4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sqrt_c8.F90 b/libgfortran/generated/_sqrt_c8.F90 index 09c871e..26ea523 100644 --- a/libgfortran/generated/_sqrt_c8.F90 +++ b/libgfortran/generated/_sqrt_c8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sqrt_r10.F90 b/libgfortran/generated/_sqrt_r10.F90 index b59bb5c..84e13c3 100644 --- a/libgfortran/generated/_sqrt_r10.F90 +++ b/libgfortran/generated/_sqrt_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sqrt_r16.F90 b/libgfortran/generated/_sqrt_r16.F90 index 25336e8..d27b0a7 100644 --- a/libgfortran/generated/_sqrt_r16.F90 +++ b/libgfortran/generated/_sqrt_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sqrt_r4.F90 b/libgfortran/generated/_sqrt_r4.F90 index 15ebfa8..2616489 100644 --- a/libgfortran/generated/_sqrt_r4.F90 +++ b/libgfortran/generated/_sqrt_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_sqrt_r8.F90 b/libgfortran/generated/_sqrt_r8.F90 index 1678f4a..b4ee52f 100644 --- a/libgfortran/generated/_sqrt_r8.F90 +++ b/libgfortran/generated/_sqrt_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_tan_r10.F90 b/libgfortran/generated/_tan_r10.F90 index fd788bb..2445e1a 100644 --- a/libgfortran/generated/_tan_r10.F90 +++ b/libgfortran/generated/_tan_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_tan_r16.F90 b/libgfortran/generated/_tan_r16.F90 index 785b53a..ae5eeb0 100644 --- a/libgfortran/generated/_tan_r16.F90 +++ b/libgfortran/generated/_tan_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_tan_r4.F90 b/libgfortran/generated/_tan_r4.F90 index 982af26..7f43540 100644 --- a/libgfortran/generated/_tan_r4.F90 +++ b/libgfortran/generated/_tan_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_tan_r8.F90 b/libgfortran/generated/_tan_r8.F90 index c93b61c..677e06f 100644 --- a/libgfortran/generated/_tan_r8.F90 +++ b/libgfortran/generated/_tan_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_tanh_r10.F90 b/libgfortran/generated/_tanh_r10.F90 index 6809d3f..bd1fb2e 100644 --- a/libgfortran/generated/_tanh_r10.F90 +++ b/libgfortran/generated/_tanh_r10.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_tanh_r16.F90 b/libgfortran/generated/_tanh_r16.F90 index 8e30ea8..c9dccb5 100644 --- a/libgfortran/generated/_tanh_r16.F90 +++ b/libgfortran/generated/_tanh_r16.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_tanh_r4.F90 b/libgfortran/generated/_tanh_r4.F90 index 27282d1..3dda1aa 100644 --- a/libgfortran/generated/_tanh_r4.F90 +++ b/libgfortran/generated/_tanh_r4.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/_tanh_r8.F90 b/libgfortran/generated/_tanh_r8.F90 index 0007823..fed772a 100644 --- a/libgfortran/generated/_tanh_r8.F90 +++ b/libgfortran/generated/_tanh_r8.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/all_l1.c b/libgfortran/generated/all_l1.c index 46168eb..82859eb 100644 --- a/libgfortran/generated/all_l1.c +++ b/libgfortran/generated/all_l1.c @@ -1,5 +1,5 @@ /* Implementation of the ALL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/all_l16.c b/libgfortran/generated/all_l16.c index 2fa9578..f7104b0 100644 --- a/libgfortran/generated/all_l16.c +++ b/libgfortran/generated/all_l16.c @@ -1,5 +1,5 @@ /* Implementation of the ALL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/all_l2.c b/libgfortran/generated/all_l2.c index 5b08556..e44a937 100644 --- a/libgfortran/generated/all_l2.c +++ b/libgfortran/generated/all_l2.c @@ -1,5 +1,5 @@ /* Implementation of the ALL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/all_l4.c b/libgfortran/generated/all_l4.c index b573742..9f5c9f5 100644 --- a/libgfortran/generated/all_l4.c +++ b/libgfortran/generated/all_l4.c @@ -1,5 +1,5 @@ /* Implementation of the ALL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/all_l8.c b/libgfortran/generated/all_l8.c index dfac0e3..88a8fa0 100644 --- a/libgfortran/generated/all_l8.c +++ b/libgfortran/generated/all_l8.c @@ -1,5 +1,5 @@ /* Implementation of the ALL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/any_l1.c b/libgfortran/generated/any_l1.c index e2bf26c..6d83119 100644 --- a/libgfortran/generated/any_l1.c +++ b/libgfortran/generated/any_l1.c @@ -1,5 +1,5 @@ /* Implementation of the ANY intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/any_l16.c b/libgfortran/generated/any_l16.c index 5b2987d..aebee57 100644 --- a/libgfortran/generated/any_l16.c +++ b/libgfortran/generated/any_l16.c @@ -1,5 +1,5 @@ /* Implementation of the ANY intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/any_l2.c b/libgfortran/generated/any_l2.c index 6e28643..de78437 100644 --- a/libgfortran/generated/any_l2.c +++ b/libgfortran/generated/any_l2.c @@ -1,5 +1,5 @@ /* Implementation of the ANY intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/any_l4.c b/libgfortran/generated/any_l4.c index 7d2fcd0..2b1d216 100644 --- a/libgfortran/generated/any_l4.c +++ b/libgfortran/generated/any_l4.c @@ -1,5 +1,5 @@ /* Implementation of the ANY intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/any_l8.c b/libgfortran/generated/any_l8.c index c72d12f..5bdf182 100644 --- a/libgfortran/generated/any_l8.c +++ b/libgfortran/generated/any_l8.c @@ -1,5 +1,5 @@ /* Implementation of the ANY intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/bessel_r10.c b/libgfortran/generated/bessel_r10.c index c297ba0..bdd3f16 100644 --- a/libgfortran/generated/bessel_r10.c +++ b/libgfortran/generated/bessel_r10.c @@ -1,6 +1,6 @@ /* Implementation of the BESSEL_JN and BESSEL_YN transformational function using a recurrence algorithm. - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/bessel_r16.c b/libgfortran/generated/bessel_r16.c index d07dead..59d4561 100644 --- a/libgfortran/generated/bessel_r16.c +++ b/libgfortran/generated/bessel_r16.c @@ -1,6 +1,6 @@ /* Implementation of the BESSEL_JN and BESSEL_YN transformational function using a recurrence algorithm. - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/bessel_r4.c b/libgfortran/generated/bessel_r4.c index 3c81574..e80fa7d 100644 --- a/libgfortran/generated/bessel_r4.c +++ b/libgfortran/generated/bessel_r4.c @@ -1,6 +1,6 @@ /* Implementation of the BESSEL_JN and BESSEL_YN transformational function using a recurrence algorithm. - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/bessel_r8.c b/libgfortran/generated/bessel_r8.c index 00d3b3c..06db684 100644 --- a/libgfortran/generated/bessel_r8.c +++ b/libgfortran/generated/bessel_r8.c @@ -1,6 +1,6 @@ /* Implementation of the BESSEL_JN and BESSEL_YN transformational function using a recurrence algorithm. - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/count_16_l.c b/libgfortran/generated/count_16_l.c index 28ae161..37adb25 100644 --- a/libgfortran/generated/count_16_l.c +++ b/libgfortran/generated/count_16_l.c @@ -1,5 +1,5 @@ /* Implementation of the COUNT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/count_1_l.c b/libgfortran/generated/count_1_l.c index 8b1892c..5627064 100644 --- a/libgfortran/generated/count_1_l.c +++ b/libgfortran/generated/count_1_l.c @@ -1,5 +1,5 @@ /* Implementation of the COUNT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/count_2_l.c b/libgfortran/generated/count_2_l.c index 8132c2e..fe83426 100644 --- a/libgfortran/generated/count_2_l.c +++ b/libgfortran/generated/count_2_l.c @@ -1,5 +1,5 @@ /* Implementation of the COUNT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/count_4_l.c b/libgfortran/generated/count_4_l.c index f90ba35..8493cb1 100644 --- a/libgfortran/generated/count_4_l.c +++ b/libgfortran/generated/count_4_l.c @@ -1,5 +1,5 @@ /* Implementation of the COUNT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/count_8_l.c b/libgfortran/generated/count_8_l.c index efce9e4..0964df2 100644 --- a/libgfortran/generated/count_8_l.c +++ b/libgfortran/generated/count_8_l.c @@ -1,5 +1,5 @@ /* Implementation of the COUNT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_c10.c b/libgfortran/generated/cshift0_c10.c index 120ea91..6da9e2b 100644 --- a/libgfortran/generated/cshift0_c10.c +++ b/libgfortran/generated/cshift0_c10.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_c16.c b/libgfortran/generated/cshift0_c16.c index 821cf29..10f2d1a 100644 --- a/libgfortran/generated/cshift0_c16.c +++ b/libgfortran/generated/cshift0_c16.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_c4.c b/libgfortran/generated/cshift0_c4.c index 83c751e..e41514e 100644 --- a/libgfortran/generated/cshift0_c4.c +++ b/libgfortran/generated/cshift0_c4.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_c8.c b/libgfortran/generated/cshift0_c8.c index 920f057..befde95 100644 --- a/libgfortran/generated/cshift0_c8.c +++ b/libgfortran/generated/cshift0_c8.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_i1.c b/libgfortran/generated/cshift0_i1.c index 320134d..bde3bcd 100644 --- a/libgfortran/generated/cshift0_i1.c +++ b/libgfortran/generated/cshift0_i1.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_i16.c b/libgfortran/generated/cshift0_i16.c index ca1fa3b..6863f20 100644 --- a/libgfortran/generated/cshift0_i16.c +++ b/libgfortran/generated/cshift0_i16.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_i2.c b/libgfortran/generated/cshift0_i2.c index 841ae38..f9a7f5a 100644 --- a/libgfortran/generated/cshift0_i2.c +++ b/libgfortran/generated/cshift0_i2.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_i4.c b/libgfortran/generated/cshift0_i4.c index 87713655..0d2072f 100644 --- a/libgfortran/generated/cshift0_i4.c +++ b/libgfortran/generated/cshift0_i4.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_i8.c b/libgfortran/generated/cshift0_i8.c index 7c55358..380b845 100644 --- a/libgfortran/generated/cshift0_i8.c +++ b/libgfortran/generated/cshift0_i8.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_r10.c b/libgfortran/generated/cshift0_r10.c index c2f5ca6..137b191 100644 --- a/libgfortran/generated/cshift0_r10.c +++ b/libgfortran/generated/cshift0_r10.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_r16.c b/libgfortran/generated/cshift0_r16.c index abbea68..9f3efce 100644 --- a/libgfortran/generated/cshift0_r16.c +++ b/libgfortran/generated/cshift0_r16.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_r4.c b/libgfortran/generated/cshift0_r4.c index 0788566..af28488 100644 --- a/libgfortran/generated/cshift0_r4.c +++ b/libgfortran/generated/cshift0_r4.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift0_r8.c b/libgfortran/generated/cshift0_r8.c index 13e3a5c..9b32d8a 100644 --- a/libgfortran/generated/cshift0_r8.c +++ b/libgfortran/generated/cshift0_r8.c @@ -1,5 +1,5 @@ /* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16.c b/libgfortran/generated/cshift1_16.c index eb7a83b..c79b90a 100644 --- a/libgfortran/generated/cshift1_16.c +++ b/libgfortran/generated/cshift1_16.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Feng Wang <wf_cs@yahoo.com> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_c10.c b/libgfortran/generated/cshift1_16_c10.c index 1dfe807..7aab64e 100644 --- a/libgfortran/generated/cshift1_16_c10.c +++ b/libgfortran/generated/cshift1_16_c10.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_c16.c b/libgfortran/generated/cshift1_16_c16.c index 8e7fa05..e894778 100644 --- a/libgfortran/generated/cshift1_16_c16.c +++ b/libgfortran/generated/cshift1_16_c16.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_c4.c b/libgfortran/generated/cshift1_16_c4.c index a858294..b754e73 100644 --- a/libgfortran/generated/cshift1_16_c4.c +++ b/libgfortran/generated/cshift1_16_c4.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_c8.c b/libgfortran/generated/cshift1_16_c8.c index c2d0c96..8cde5cc 100644 --- a/libgfortran/generated/cshift1_16_c8.c +++ b/libgfortran/generated/cshift1_16_c8.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_i1.c b/libgfortran/generated/cshift1_16_i1.c index 575da16..849b09e 100644 --- a/libgfortran/generated/cshift1_16_i1.c +++ b/libgfortran/generated/cshift1_16_i1.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_i16.c b/libgfortran/generated/cshift1_16_i16.c index 24b556e..4be7d10 100644 --- a/libgfortran/generated/cshift1_16_i16.c +++ b/libgfortran/generated/cshift1_16_i16.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_i2.c b/libgfortran/generated/cshift1_16_i2.c index 2f6d6b4..035b1c7 100644 --- a/libgfortran/generated/cshift1_16_i2.c +++ b/libgfortran/generated/cshift1_16_i2.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_i4.c b/libgfortran/generated/cshift1_16_i4.c index cec3912..4cb7795 100644 --- a/libgfortran/generated/cshift1_16_i4.c +++ b/libgfortran/generated/cshift1_16_i4.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_i8.c b/libgfortran/generated/cshift1_16_i8.c index b05cf57..65b89b2 100644 --- a/libgfortran/generated/cshift1_16_i8.c +++ b/libgfortran/generated/cshift1_16_i8.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_r10.c b/libgfortran/generated/cshift1_16_r10.c index 19f2ae5..5d048c3 100644 --- a/libgfortran/generated/cshift1_16_r10.c +++ b/libgfortran/generated/cshift1_16_r10.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_r16.c b/libgfortran/generated/cshift1_16_r16.c index 1437f5e..e1e68f3 100644 --- a/libgfortran/generated/cshift1_16_r16.c +++ b/libgfortran/generated/cshift1_16_r16.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_r4.c b/libgfortran/generated/cshift1_16_r4.c index 24febca..1567169 100644 --- a/libgfortran/generated/cshift1_16_r4.c +++ b/libgfortran/generated/cshift1_16_r4.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_16_r8.c b/libgfortran/generated/cshift1_16_r8.c index ad0ec5e..31e3ed5 100644 --- a/libgfortran/generated/cshift1_16_r8.c +++ b/libgfortran/generated/cshift1_16_r8.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4.c b/libgfortran/generated/cshift1_4.c index b753f23..0da8513 100644 --- a/libgfortran/generated/cshift1_4.c +++ b/libgfortran/generated/cshift1_4.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Feng Wang <wf_cs@yahoo.com> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_c10.c b/libgfortran/generated/cshift1_4_c10.c index e3cebef..b77a447 100644 --- a/libgfortran/generated/cshift1_4_c10.c +++ b/libgfortran/generated/cshift1_4_c10.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_c16.c b/libgfortran/generated/cshift1_4_c16.c index d57ae97..e8540bd 100644 --- a/libgfortran/generated/cshift1_4_c16.c +++ b/libgfortran/generated/cshift1_4_c16.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_c4.c b/libgfortran/generated/cshift1_4_c4.c index c456f31..97cc150 100644 --- a/libgfortran/generated/cshift1_4_c4.c +++ b/libgfortran/generated/cshift1_4_c4.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_c8.c b/libgfortran/generated/cshift1_4_c8.c index 767db28..aa8225b 100644 --- a/libgfortran/generated/cshift1_4_c8.c +++ b/libgfortran/generated/cshift1_4_c8.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_i1.c b/libgfortran/generated/cshift1_4_i1.c index 49961d4..450fb1d 100644 --- a/libgfortran/generated/cshift1_4_i1.c +++ b/libgfortran/generated/cshift1_4_i1.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_i16.c b/libgfortran/generated/cshift1_4_i16.c index 5dd277c..de383a2 100644 --- a/libgfortran/generated/cshift1_4_i16.c +++ b/libgfortran/generated/cshift1_4_i16.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_i2.c b/libgfortran/generated/cshift1_4_i2.c index 0638f15..018a01a 100644 --- a/libgfortran/generated/cshift1_4_i2.c +++ b/libgfortran/generated/cshift1_4_i2.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_i4.c b/libgfortran/generated/cshift1_4_i4.c index acc0db4..a209897 100644 --- a/libgfortran/generated/cshift1_4_i4.c +++ b/libgfortran/generated/cshift1_4_i4.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_i8.c b/libgfortran/generated/cshift1_4_i8.c index 38db578..9387d22 100644 --- a/libgfortran/generated/cshift1_4_i8.c +++ b/libgfortran/generated/cshift1_4_i8.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_r10.c b/libgfortran/generated/cshift1_4_r10.c index 603e1e9..0ac1b5f 100644 --- a/libgfortran/generated/cshift1_4_r10.c +++ b/libgfortran/generated/cshift1_4_r10.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_r16.c b/libgfortran/generated/cshift1_4_r16.c index a1a30ce..1fd6729 100644 --- a/libgfortran/generated/cshift1_4_r16.c +++ b/libgfortran/generated/cshift1_4_r16.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_r4.c b/libgfortran/generated/cshift1_4_r4.c index f6feb21..959fadc 100644 --- a/libgfortran/generated/cshift1_4_r4.c +++ b/libgfortran/generated/cshift1_4_r4.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_4_r8.c b/libgfortran/generated/cshift1_4_r8.c index 126966a..820f742 100644 --- a/libgfortran/generated/cshift1_4_r8.c +++ b/libgfortran/generated/cshift1_4_r8.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8.c b/libgfortran/generated/cshift1_8.c index 1acfd38..cc0800f 100644 --- a/libgfortran/generated/cshift1_8.c +++ b/libgfortran/generated/cshift1_8.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Feng Wang <wf_cs@yahoo.com> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_c10.c b/libgfortran/generated/cshift1_8_c10.c index 182ad63..4f8067c 100644 --- a/libgfortran/generated/cshift1_8_c10.c +++ b/libgfortran/generated/cshift1_8_c10.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_c16.c b/libgfortran/generated/cshift1_8_c16.c index 7e28785..6332db5 100644 --- a/libgfortran/generated/cshift1_8_c16.c +++ b/libgfortran/generated/cshift1_8_c16.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_c4.c b/libgfortran/generated/cshift1_8_c4.c index 2050256..c70cefc 100644 --- a/libgfortran/generated/cshift1_8_c4.c +++ b/libgfortran/generated/cshift1_8_c4.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_c8.c b/libgfortran/generated/cshift1_8_c8.c index 2f5ab1c..5edf482 100644 --- a/libgfortran/generated/cshift1_8_c8.c +++ b/libgfortran/generated/cshift1_8_c8.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_i1.c b/libgfortran/generated/cshift1_8_i1.c index eb84eda..2e4f25d 100644 --- a/libgfortran/generated/cshift1_8_i1.c +++ b/libgfortran/generated/cshift1_8_i1.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_i16.c b/libgfortran/generated/cshift1_8_i16.c index bd07627..1a8314b 100644 --- a/libgfortran/generated/cshift1_8_i16.c +++ b/libgfortran/generated/cshift1_8_i16.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_i2.c b/libgfortran/generated/cshift1_8_i2.c index 648d3073..89b4842 100644 --- a/libgfortran/generated/cshift1_8_i2.c +++ b/libgfortran/generated/cshift1_8_i2.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_i4.c b/libgfortran/generated/cshift1_8_i4.c index 9cfc431..81ba9c1 100644 --- a/libgfortran/generated/cshift1_8_i4.c +++ b/libgfortran/generated/cshift1_8_i4.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_i8.c b/libgfortran/generated/cshift1_8_i8.c index 3d737a7..8140fc3 100644 --- a/libgfortran/generated/cshift1_8_i8.c +++ b/libgfortran/generated/cshift1_8_i8.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_r10.c b/libgfortran/generated/cshift1_8_r10.c index 65e2eb3..9bfff8d 100644 --- a/libgfortran/generated/cshift1_8_r10.c +++ b/libgfortran/generated/cshift1_8_r10.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_r16.c b/libgfortran/generated/cshift1_8_r16.c index 97d7f7b..afafd94 100644 --- a/libgfortran/generated/cshift1_8_r16.c +++ b/libgfortran/generated/cshift1_8_r16.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_r4.c b/libgfortran/generated/cshift1_8_r4.c index bf2ea5f..325aeb3 100644 --- a/libgfortran/generated/cshift1_8_r4.c +++ b/libgfortran/generated/cshift1_8_r4.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/cshift1_8_r8.c b/libgfortran/generated/cshift1_8_r8.c index 5f3c08b..7a88db8 100644 --- a/libgfortran/generated/cshift1_8_r8.c +++ b/libgfortran/generated/cshift1_8_r8.c @@ -1,5 +1,5 @@ /* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/eoshift1_16.c b/libgfortran/generated/eoshift1_16.c index fe2e8ef..58afe8e 100644 --- a/libgfortran/generated/eoshift1_16.c +++ b/libgfortran/generated/eoshift1_16.c @@ -1,5 +1,5 @@ /* Implementation of the EOSHIFT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/eoshift1_4.c b/libgfortran/generated/eoshift1_4.c index a90fc21..32dd33e4 100644 --- a/libgfortran/generated/eoshift1_4.c +++ b/libgfortran/generated/eoshift1_4.c @@ -1,5 +1,5 @@ /* Implementation of the EOSHIFT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/eoshift1_8.c b/libgfortran/generated/eoshift1_8.c index 8be1e05..175b390 100644 --- a/libgfortran/generated/eoshift1_8.c +++ b/libgfortran/generated/eoshift1_8.c @@ -1,5 +1,5 @@ /* Implementation of the EOSHIFT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/eoshift3_16.c b/libgfortran/generated/eoshift3_16.c index 621fd6f..88f6c29 100644 --- a/libgfortran/generated/eoshift3_16.c +++ b/libgfortran/generated/eoshift3_16.c @@ -1,5 +1,5 @@ /* Implementation of the EOSHIFT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/eoshift3_4.c b/libgfortran/generated/eoshift3_4.c index ac4fd67..1ccb270 100644 --- a/libgfortran/generated/eoshift3_4.c +++ b/libgfortran/generated/eoshift3_4.c @@ -1,5 +1,5 @@ /* Implementation of the EOSHIFT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/eoshift3_8.c b/libgfortran/generated/eoshift3_8.c index 7e9d8b4..1ef11dc 100644 --- a/libgfortran/generated/eoshift3_8.c +++ b/libgfortran/generated/eoshift3_8.c @@ -1,5 +1,5 @@ /* Implementation of the EOSHIFT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iall_i1.c b/libgfortran/generated/iall_i1.c index 3453fd2..a3cea87 100644 --- a/libgfortran/generated/iall_i1.c +++ b/libgfortran/generated/iall_i1.c @@ -1,5 +1,5 @@ /* Implementation of the IALL intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iall_i16.c b/libgfortran/generated/iall_i16.c index 9f6747a..0eab5ab 100644 --- a/libgfortran/generated/iall_i16.c +++ b/libgfortran/generated/iall_i16.c @@ -1,5 +1,5 @@ /* Implementation of the IALL intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iall_i2.c b/libgfortran/generated/iall_i2.c index 5ac86ab..4711c81 100644 --- a/libgfortran/generated/iall_i2.c +++ b/libgfortran/generated/iall_i2.c @@ -1,5 +1,5 @@ /* Implementation of the IALL intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iall_i4.c b/libgfortran/generated/iall_i4.c index 0d3ba8a..02b3078 100644 --- a/libgfortran/generated/iall_i4.c +++ b/libgfortran/generated/iall_i4.c @@ -1,5 +1,5 @@ /* Implementation of the IALL intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iall_i8.c b/libgfortran/generated/iall_i8.c index d3424a0..4baacdb 100644 --- a/libgfortran/generated/iall_i8.c +++ b/libgfortran/generated/iall_i8.c @@ -1,5 +1,5 @@ /* Implementation of the IALL intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iany_i1.c b/libgfortran/generated/iany_i1.c index 1009c18..e70d4b7 100644 --- a/libgfortran/generated/iany_i1.c +++ b/libgfortran/generated/iany_i1.c @@ -1,5 +1,5 @@ /* Implementation of the IANY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iany_i16.c b/libgfortran/generated/iany_i16.c index 6910040..a76214d 100644 --- a/libgfortran/generated/iany_i16.c +++ b/libgfortran/generated/iany_i16.c @@ -1,5 +1,5 @@ /* Implementation of the IANY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iany_i2.c b/libgfortran/generated/iany_i2.c index 09d8cc4..c309b49 100644 --- a/libgfortran/generated/iany_i2.c +++ b/libgfortran/generated/iany_i2.c @@ -1,5 +1,5 @@ /* Implementation of the IANY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iany_i4.c b/libgfortran/generated/iany_i4.c index 4d18e79..09dc81e 100644 --- a/libgfortran/generated/iany_i4.c +++ b/libgfortran/generated/iany_i4.c @@ -1,5 +1,5 @@ /* Implementation of the IANY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iany_i8.c b/libgfortran/generated/iany_i8.c index e857424..dda57da 100644 --- a/libgfortran/generated/iany_i8.c +++ b/libgfortran/generated/iany_i8.c @@ -1,5 +1,5 @@ /* Implementation of the IANY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_c10.c b/libgfortran/generated/in_pack_c10.c index f46cfb5..a30be34 100644 --- a/libgfortran/generated/in_pack_c10.c +++ b/libgfortran/generated/in_pack_c10.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_c16.c b/libgfortran/generated/in_pack_c16.c index d742644..1562d97 100644 --- a/libgfortran/generated/in_pack_c16.c +++ b/libgfortran/generated/in_pack_c16.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_c4.c b/libgfortran/generated/in_pack_c4.c index 8bf1a7e..4140954 100644 --- a/libgfortran/generated/in_pack_c4.c +++ b/libgfortran/generated/in_pack_c4.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_c8.c b/libgfortran/generated/in_pack_c8.c index db3d3de..6526644 100644 --- a/libgfortran/generated/in_pack_c8.c +++ b/libgfortran/generated/in_pack_c8.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_i1.c b/libgfortran/generated/in_pack_i1.c index a85546f..1f2d389 100644 --- a/libgfortran/generated/in_pack_i1.c +++ b/libgfortran/generated/in_pack_i1.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_i16.c b/libgfortran/generated/in_pack_i16.c index d11e9b5..36735ed 100644 --- a/libgfortran/generated/in_pack_i16.c +++ b/libgfortran/generated/in_pack_i16.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_i2.c b/libgfortran/generated/in_pack_i2.c index 027e3f2..c0aac72 100644 --- a/libgfortran/generated/in_pack_i2.c +++ b/libgfortran/generated/in_pack_i2.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_i4.c b/libgfortran/generated/in_pack_i4.c index 47e9388..12fc6e3 100644 --- a/libgfortran/generated/in_pack_i4.c +++ b/libgfortran/generated/in_pack_i4.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_i8.c b/libgfortran/generated/in_pack_i8.c index 19bb022..694e5ee 100644 --- a/libgfortran/generated/in_pack_i8.c +++ b/libgfortran/generated/in_pack_i8.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_r10.c b/libgfortran/generated/in_pack_r10.c index 0a2da94..f3c8e7b 100644 --- a/libgfortran/generated/in_pack_r10.c +++ b/libgfortran/generated/in_pack_r10.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_r16.c b/libgfortran/generated/in_pack_r16.c index 9c93c53..9405dec 100644 --- a/libgfortran/generated/in_pack_r16.c +++ b/libgfortran/generated/in_pack_r16.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_r4.c b/libgfortran/generated/in_pack_r4.c index 64f283d..95633f5 100644 --- a/libgfortran/generated/in_pack_r4.c +++ b/libgfortran/generated/in_pack_r4.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_pack_r8.c b/libgfortran/generated/in_pack_r8.c index f4d2922..c13ad88 100644 --- a/libgfortran/generated/in_pack_r8.c +++ b/libgfortran/generated/in_pack_r8.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_c10.c b/libgfortran/generated/in_unpack_c10.c index 4fd792d..4dfbcb4 100644 --- a/libgfortran/generated/in_unpack_c10.c +++ b/libgfortran/generated/in_unpack_c10.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_c16.c b/libgfortran/generated/in_unpack_c16.c index c0d9333..e007ef6 100644 --- a/libgfortran/generated/in_unpack_c16.c +++ b/libgfortran/generated/in_unpack_c16.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_c4.c b/libgfortran/generated/in_unpack_c4.c index b971212..c5386d5 100644 --- a/libgfortran/generated/in_unpack_c4.c +++ b/libgfortran/generated/in_unpack_c4.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_c8.c b/libgfortran/generated/in_unpack_c8.c index 76b2d56..864b2ad 100644 --- a/libgfortran/generated/in_unpack_c8.c +++ b/libgfortran/generated/in_unpack_c8.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_i1.c b/libgfortran/generated/in_unpack_i1.c index 9ad7c25..ba61b49 100644 --- a/libgfortran/generated/in_unpack_i1.c +++ b/libgfortran/generated/in_unpack_i1.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_i16.c b/libgfortran/generated/in_unpack_i16.c index 801e1de..392e4f7 100644 --- a/libgfortran/generated/in_unpack_i16.c +++ b/libgfortran/generated/in_unpack_i16.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_i2.c b/libgfortran/generated/in_unpack_i2.c index 6c4a043..dd036e5 100644 --- a/libgfortran/generated/in_unpack_i2.c +++ b/libgfortran/generated/in_unpack_i2.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_i4.c b/libgfortran/generated/in_unpack_i4.c index d36087c..928a695 100644 --- a/libgfortran/generated/in_unpack_i4.c +++ b/libgfortran/generated/in_unpack_i4.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_i8.c b/libgfortran/generated/in_unpack_i8.c index 367fbdb..21ad0c6 100644 --- a/libgfortran/generated/in_unpack_i8.c +++ b/libgfortran/generated/in_unpack_i8.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_r10.c b/libgfortran/generated/in_unpack_r10.c index bdde745..c937b71 100644 --- a/libgfortran/generated/in_unpack_r10.c +++ b/libgfortran/generated/in_unpack_r10.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_r16.c b/libgfortran/generated/in_unpack_r16.c index 4cc3c7f..1e83ae3 100644 --- a/libgfortran/generated/in_unpack_r16.c +++ b/libgfortran/generated/in_unpack_r16.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_r4.c b/libgfortran/generated/in_unpack_r4.c index f87d1c5..7a26323 100644 --- a/libgfortran/generated/in_unpack_r4.c +++ b/libgfortran/generated/in_unpack_r4.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/in_unpack_r8.c b/libgfortran/generated/in_unpack_r8.c index f6c56e6..8805dcc3 100644 --- a/libgfortran/generated/in_unpack_r8.c +++ b/libgfortran/generated/in_unpack_r8.c @@ -1,5 +1,5 @@ /* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iparity_i1.c b/libgfortran/generated/iparity_i1.c index ff5fbeb..9780a2f 100644 --- a/libgfortran/generated/iparity_i1.c +++ b/libgfortran/generated/iparity_i1.c @@ -1,5 +1,5 @@ /* Implementation of the IPARITY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iparity_i16.c b/libgfortran/generated/iparity_i16.c index fcd7bef..29aaea2 100644 --- a/libgfortran/generated/iparity_i16.c +++ b/libgfortran/generated/iparity_i16.c @@ -1,5 +1,5 @@ /* Implementation of the IPARITY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iparity_i2.c b/libgfortran/generated/iparity_i2.c index 9aa34e0..04ac62d 100644 --- a/libgfortran/generated/iparity_i2.c +++ b/libgfortran/generated/iparity_i2.c @@ -1,5 +1,5 @@ /* Implementation of the IPARITY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iparity_i4.c b/libgfortran/generated/iparity_i4.c index 71835df..41a0e33 100644 --- a/libgfortran/generated/iparity_i4.c +++ b/libgfortran/generated/iparity_i4.c @@ -1,5 +1,5 @@ /* Implementation of the IPARITY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/iparity_i8.c b/libgfortran/generated/iparity_i8.c index e04360c..352cf9c 100644 --- a/libgfortran/generated/iparity_i8.c +++ b/libgfortran/generated/iparity_i8.c @@ -1,5 +1,5 @@ /* Implementation of the IPARITY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_c10.c b/libgfortran/generated/matmul_c10.c index 4e156ba..c43501c 100644 --- a/libgfortran/generated/matmul_c10.c +++ b/libgfortran/generated/matmul_c10.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_c16.c b/libgfortran/generated/matmul_c16.c index 162e564..c02e74b 100644 --- a/libgfortran/generated/matmul_c16.c +++ b/libgfortran/generated/matmul_c16.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_c4.c b/libgfortran/generated/matmul_c4.c index 43a0288..d16f676 100644 --- a/libgfortran/generated/matmul_c4.c +++ b/libgfortran/generated/matmul_c4.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_c8.c b/libgfortran/generated/matmul_c8.c index 6efdca1..17eb31c 100644 --- a/libgfortran/generated/matmul_c8.c +++ b/libgfortran/generated/matmul_c8.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_i1.c b/libgfortran/generated/matmul_i1.c index a658c45..1c945bf 100644 --- a/libgfortran/generated/matmul_i1.c +++ b/libgfortran/generated/matmul_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_i16.c b/libgfortran/generated/matmul_i16.c index 447112b..5492fc4 100644 --- a/libgfortran/generated/matmul_i16.c +++ b/libgfortran/generated/matmul_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_i2.c b/libgfortran/generated/matmul_i2.c index 4e21651..d292cb0 100644 --- a/libgfortran/generated/matmul_i2.c +++ b/libgfortran/generated/matmul_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_i4.c b/libgfortran/generated/matmul_i4.c index 5331e94..7409c3f 100644 --- a/libgfortran/generated/matmul_i4.c +++ b/libgfortran/generated/matmul_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_i8.c b/libgfortran/generated/matmul_i8.c index d150e69..995357c 100644 --- a/libgfortran/generated/matmul_i8.c +++ b/libgfortran/generated/matmul_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_l16.c b/libgfortran/generated/matmul_l16.c index 762370b..fc34305 100644 --- a/libgfortran/generated/matmul_l16.c +++ b/libgfortran/generated/matmul_l16.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_l4.c b/libgfortran/generated/matmul_l4.c index 65f3630..9d3e9ac 100644 --- a/libgfortran/generated/matmul_l4.c +++ b/libgfortran/generated/matmul_l4.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_l8.c b/libgfortran/generated/matmul_l8.c index 42ec76f..0b52024 100644 --- a/libgfortran/generated/matmul_l8.c +++ b/libgfortran/generated/matmul_l8.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_r10.c b/libgfortran/generated/matmul_r10.c index 5407615..c4545e4 100644 --- a/libgfortran/generated/matmul_r10.c +++ b/libgfortran/generated/matmul_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_r16.c b/libgfortran/generated/matmul_r16.c index 1254ec1..f6289e2 100644 --- a/libgfortran/generated/matmul_r16.c +++ b/libgfortran/generated/matmul_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_r4.c b/libgfortran/generated/matmul_r4.c index 5d13e67..2e7520a 100644 --- a/libgfortran/generated/matmul_r4.c +++ b/libgfortran/generated/matmul_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmul_r8.c b/libgfortran/generated/matmul_r8.c index e835ed1..b851916 100644 --- a/libgfortran/generated/matmul_r8.c +++ b/libgfortran/generated/matmul_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_c10.c b/libgfortran/generated/matmulavx128_c10.c index ac8a013..d67a24a 100644 --- a/libgfortran/generated/matmulavx128_c10.c +++ b/libgfortran/generated/matmulavx128_c10.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_c16.c b/libgfortran/generated/matmulavx128_c16.c index 6af99be..74e79dc 100644 --- a/libgfortran/generated/matmulavx128_c16.c +++ b/libgfortran/generated/matmulavx128_c16.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_c4.c b/libgfortran/generated/matmulavx128_c4.c index 0e358be..4a81b83 100644 --- a/libgfortran/generated/matmulavx128_c4.c +++ b/libgfortran/generated/matmulavx128_c4.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_c8.c b/libgfortran/generated/matmulavx128_c8.c index c4416b1..f92d62a 100644 --- a/libgfortran/generated/matmulavx128_c8.c +++ b/libgfortran/generated/matmulavx128_c8.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_i1.c b/libgfortran/generated/matmulavx128_i1.c index 011de3a..8a3195f9 100644 --- a/libgfortran/generated/matmulavx128_i1.c +++ b/libgfortran/generated/matmulavx128_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_i16.c b/libgfortran/generated/matmulavx128_i16.c index 3a8b48a..0c27bf8 100644 --- a/libgfortran/generated/matmulavx128_i16.c +++ b/libgfortran/generated/matmulavx128_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_i2.c b/libgfortran/generated/matmulavx128_i2.c index 738f642..c780ce8 100644 --- a/libgfortran/generated/matmulavx128_i2.c +++ b/libgfortran/generated/matmulavx128_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_i4.c b/libgfortran/generated/matmulavx128_i4.c index 6c3bb7c..bc69426 100644 --- a/libgfortran/generated/matmulavx128_i4.c +++ b/libgfortran/generated/matmulavx128_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_i8.c b/libgfortran/generated/matmulavx128_i8.c index 58bdf2c..c13f938 100644 --- a/libgfortran/generated/matmulavx128_i8.c +++ b/libgfortran/generated/matmulavx128_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_r10.c b/libgfortran/generated/matmulavx128_r10.c index 72277fa..178b891 100644 --- a/libgfortran/generated/matmulavx128_r10.c +++ b/libgfortran/generated/matmulavx128_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_r16.c b/libgfortran/generated/matmulavx128_r16.c index a6e1178..4db4655 100644 --- a/libgfortran/generated/matmulavx128_r16.c +++ b/libgfortran/generated/matmulavx128_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_r4.c b/libgfortran/generated/matmulavx128_r4.c index b981053..d4338fa 100644 --- a/libgfortran/generated/matmulavx128_r4.c +++ b/libgfortran/generated/matmulavx128_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/matmulavx128_r8.c b/libgfortran/generated/matmulavx128_r8.c index 6392b7b..62877cd 100644 --- a/libgfortran/generated/matmulavx128_r8.c +++ b/libgfortran/generated/matmulavx128_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_16_i1.c b/libgfortran/generated/maxloc0_16_i1.c index 5fd8887..fe79a55 100644 --- a/libgfortran/generated/maxloc0_16_i1.c +++ b/libgfortran/generated/maxloc0_16_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_16_i16.c b/libgfortran/generated/maxloc0_16_i16.c index 2a4d5d1..8986910 100644 --- a/libgfortran/generated/maxloc0_16_i16.c +++ b/libgfortran/generated/maxloc0_16_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_16_i2.c b/libgfortran/generated/maxloc0_16_i2.c index 43e7065..ee0d5c2 100644 --- a/libgfortran/generated/maxloc0_16_i2.c +++ b/libgfortran/generated/maxloc0_16_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_16_i4.c b/libgfortran/generated/maxloc0_16_i4.c index d7e539d..9b0d675 100644 --- a/libgfortran/generated/maxloc0_16_i4.c +++ b/libgfortran/generated/maxloc0_16_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_16_i8.c b/libgfortran/generated/maxloc0_16_i8.c index 72afd48..113b76e 100644 --- a/libgfortran/generated/maxloc0_16_i8.c +++ b/libgfortran/generated/maxloc0_16_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_16_r10.c b/libgfortran/generated/maxloc0_16_r10.c index 670239b..810bf89 100644 --- a/libgfortran/generated/maxloc0_16_r10.c +++ b/libgfortran/generated/maxloc0_16_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_16_r16.c b/libgfortran/generated/maxloc0_16_r16.c index aa98e7d..945acf7 100644 --- a/libgfortran/generated/maxloc0_16_r16.c +++ b/libgfortran/generated/maxloc0_16_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_16_r4.c b/libgfortran/generated/maxloc0_16_r4.c index 006d593..78c4d8c 100644 --- a/libgfortran/generated/maxloc0_16_r4.c +++ b/libgfortran/generated/maxloc0_16_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_16_r8.c b/libgfortran/generated/maxloc0_16_r8.c index a8d44d5..8853d24 100644 --- a/libgfortran/generated/maxloc0_16_r8.c +++ b/libgfortran/generated/maxloc0_16_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_16_s1.c b/libgfortran/generated/maxloc0_16_s1.c index 949fb20..631e973 100644 --- a/libgfortran/generated/maxloc0_16_s1.c +++ b/libgfortran/generated/maxloc0_16_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_16_s4.c b/libgfortran/generated/maxloc0_16_s4.c index 1ac7a9d..18da7cd 100644 --- a/libgfortran/generated/maxloc0_16_s4.c +++ b/libgfortran/generated/maxloc0_16_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_4_i1.c b/libgfortran/generated/maxloc0_4_i1.c index 32caa2d..6b37487 100644 --- a/libgfortran/generated/maxloc0_4_i1.c +++ b/libgfortran/generated/maxloc0_4_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_4_i16.c b/libgfortran/generated/maxloc0_4_i16.c index fb05f9c..2a874fd 100644 --- a/libgfortran/generated/maxloc0_4_i16.c +++ b/libgfortran/generated/maxloc0_4_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_4_i2.c b/libgfortran/generated/maxloc0_4_i2.c index 84520a9..df62aad 100644 --- a/libgfortran/generated/maxloc0_4_i2.c +++ b/libgfortran/generated/maxloc0_4_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_4_i4.c b/libgfortran/generated/maxloc0_4_i4.c index 9d2e007..187d04c 100644 --- a/libgfortran/generated/maxloc0_4_i4.c +++ b/libgfortran/generated/maxloc0_4_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_4_i8.c b/libgfortran/generated/maxloc0_4_i8.c index a236673..304eda5 100644 --- a/libgfortran/generated/maxloc0_4_i8.c +++ b/libgfortran/generated/maxloc0_4_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_4_r10.c b/libgfortran/generated/maxloc0_4_r10.c index c1953ab..0585aa1 100644 --- a/libgfortran/generated/maxloc0_4_r10.c +++ b/libgfortran/generated/maxloc0_4_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_4_r16.c b/libgfortran/generated/maxloc0_4_r16.c index d0221d7..14388e0 100644 --- a/libgfortran/generated/maxloc0_4_r16.c +++ b/libgfortran/generated/maxloc0_4_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_4_r4.c b/libgfortran/generated/maxloc0_4_r4.c index 9f3931a..2626a7f 100644 --- a/libgfortran/generated/maxloc0_4_r4.c +++ b/libgfortran/generated/maxloc0_4_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_4_r8.c b/libgfortran/generated/maxloc0_4_r8.c index dff5190..9760f9d 100644 --- a/libgfortran/generated/maxloc0_4_r8.c +++ b/libgfortran/generated/maxloc0_4_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_4_s1.c b/libgfortran/generated/maxloc0_4_s1.c index 6d897d8..a3e3ce3 100644 --- a/libgfortran/generated/maxloc0_4_s1.c +++ b/libgfortran/generated/maxloc0_4_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_4_s4.c b/libgfortran/generated/maxloc0_4_s4.c index 3a8e603..318a27f 100644 --- a/libgfortran/generated/maxloc0_4_s4.c +++ b/libgfortran/generated/maxloc0_4_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_8_i1.c b/libgfortran/generated/maxloc0_8_i1.c index d5a6628..d114646 100644 --- a/libgfortran/generated/maxloc0_8_i1.c +++ b/libgfortran/generated/maxloc0_8_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_8_i16.c b/libgfortran/generated/maxloc0_8_i16.c index ce2ad49..88e3fd5 100644 --- a/libgfortran/generated/maxloc0_8_i16.c +++ b/libgfortran/generated/maxloc0_8_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_8_i2.c b/libgfortran/generated/maxloc0_8_i2.c index f9c9732..4753688 100644 --- a/libgfortran/generated/maxloc0_8_i2.c +++ b/libgfortran/generated/maxloc0_8_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_8_i4.c b/libgfortran/generated/maxloc0_8_i4.c index cc9d94c..08a145d 100644 --- a/libgfortran/generated/maxloc0_8_i4.c +++ b/libgfortran/generated/maxloc0_8_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_8_i8.c b/libgfortran/generated/maxloc0_8_i8.c index c61fbed..70f8ba1 100644 --- a/libgfortran/generated/maxloc0_8_i8.c +++ b/libgfortran/generated/maxloc0_8_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_8_r10.c b/libgfortran/generated/maxloc0_8_r10.c index 07acd25..d0447a0 100644 --- a/libgfortran/generated/maxloc0_8_r10.c +++ b/libgfortran/generated/maxloc0_8_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_8_r16.c b/libgfortran/generated/maxloc0_8_r16.c index 5b98163..4635719 100644 --- a/libgfortran/generated/maxloc0_8_r16.c +++ b/libgfortran/generated/maxloc0_8_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_8_r4.c b/libgfortran/generated/maxloc0_8_r4.c index 0caccea..20d2f03 100644 --- a/libgfortran/generated/maxloc0_8_r4.c +++ b/libgfortran/generated/maxloc0_8_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_8_r8.c b/libgfortran/generated/maxloc0_8_r8.c index 4e51b65..ce16597 100644 --- a/libgfortran/generated/maxloc0_8_r8.c +++ b/libgfortran/generated/maxloc0_8_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_8_s1.c b/libgfortran/generated/maxloc0_8_s1.c index f019736..1a613ce 100644 --- a/libgfortran/generated/maxloc0_8_s1.c +++ b/libgfortran/generated/maxloc0_8_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc0_8_s4.c b/libgfortran/generated/maxloc0_8_s4.c index 524a621..6e19aef 100644 --- a/libgfortran/generated/maxloc0_8_s4.c +++ b/libgfortran/generated/maxloc0_8_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_16_i1.c b/libgfortran/generated/maxloc1_16_i1.c index f6bab61..4970c2c 100644 --- a/libgfortran/generated/maxloc1_16_i1.c +++ b/libgfortran/generated/maxloc1_16_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_16_i16.c b/libgfortran/generated/maxloc1_16_i16.c index b3b8b36..59d26f6 100644 --- a/libgfortran/generated/maxloc1_16_i16.c +++ b/libgfortran/generated/maxloc1_16_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_16_i2.c b/libgfortran/generated/maxloc1_16_i2.c index fb38b2b..e133723 100644 --- a/libgfortran/generated/maxloc1_16_i2.c +++ b/libgfortran/generated/maxloc1_16_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_16_i4.c b/libgfortran/generated/maxloc1_16_i4.c index d17f4eb..ea1e46f 100644 --- a/libgfortran/generated/maxloc1_16_i4.c +++ b/libgfortran/generated/maxloc1_16_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_16_i8.c b/libgfortran/generated/maxloc1_16_i8.c index f0bd1ac..e6a1bf2 100644 --- a/libgfortran/generated/maxloc1_16_i8.c +++ b/libgfortran/generated/maxloc1_16_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_16_r10.c b/libgfortran/generated/maxloc1_16_r10.c index db8ff10..f9f4887 100644 --- a/libgfortran/generated/maxloc1_16_r10.c +++ b/libgfortran/generated/maxloc1_16_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_16_r16.c b/libgfortran/generated/maxloc1_16_r16.c index 1f48631..104f6f7 100644 --- a/libgfortran/generated/maxloc1_16_r16.c +++ b/libgfortran/generated/maxloc1_16_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_16_r4.c b/libgfortran/generated/maxloc1_16_r4.c index c444f6b..6a9d23c 100644 --- a/libgfortran/generated/maxloc1_16_r4.c +++ b/libgfortran/generated/maxloc1_16_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_16_r8.c b/libgfortran/generated/maxloc1_16_r8.c index 33205ff..6aa9207 100644 --- a/libgfortran/generated/maxloc1_16_r8.c +++ b/libgfortran/generated/maxloc1_16_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_16_s1.c b/libgfortran/generated/maxloc1_16_s1.c index b8efc0a..f745397 100644 --- a/libgfortran/generated/maxloc1_16_s1.c +++ b/libgfortran/generated/maxloc1_16_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_16_s4.c b/libgfortran/generated/maxloc1_16_s4.c index 466d362..a77da96 100644 --- a/libgfortran/generated/maxloc1_16_s4.c +++ b/libgfortran/generated/maxloc1_16_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_4_i1.c b/libgfortran/generated/maxloc1_4_i1.c index 6e466e6..492fa61 100644 --- a/libgfortran/generated/maxloc1_4_i1.c +++ b/libgfortran/generated/maxloc1_4_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_4_i16.c b/libgfortran/generated/maxloc1_4_i16.c index dfff85b..cf34c33 100644 --- a/libgfortran/generated/maxloc1_4_i16.c +++ b/libgfortran/generated/maxloc1_4_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_4_i2.c b/libgfortran/generated/maxloc1_4_i2.c index 1006c00..ec76833 100644 --- a/libgfortran/generated/maxloc1_4_i2.c +++ b/libgfortran/generated/maxloc1_4_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_4_i4.c b/libgfortran/generated/maxloc1_4_i4.c index 4186654..ee48be8 100644 --- a/libgfortran/generated/maxloc1_4_i4.c +++ b/libgfortran/generated/maxloc1_4_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_4_i8.c b/libgfortran/generated/maxloc1_4_i8.c index 01cfa73..4aa514d 100644 --- a/libgfortran/generated/maxloc1_4_i8.c +++ b/libgfortran/generated/maxloc1_4_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_4_r10.c b/libgfortran/generated/maxloc1_4_r10.c index 2992e2b..b2201b1 100644 --- a/libgfortran/generated/maxloc1_4_r10.c +++ b/libgfortran/generated/maxloc1_4_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_4_r16.c b/libgfortran/generated/maxloc1_4_r16.c index 325211a..387ff31 100644 --- a/libgfortran/generated/maxloc1_4_r16.c +++ b/libgfortran/generated/maxloc1_4_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_4_r4.c b/libgfortran/generated/maxloc1_4_r4.c index 9f48540..95c5754 100644 --- a/libgfortran/generated/maxloc1_4_r4.c +++ b/libgfortran/generated/maxloc1_4_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_4_r8.c b/libgfortran/generated/maxloc1_4_r8.c index f5f4145..be4f467 100644 --- a/libgfortran/generated/maxloc1_4_r8.c +++ b/libgfortran/generated/maxloc1_4_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_4_s1.c b/libgfortran/generated/maxloc1_4_s1.c index 6116e5b..b762d6b 100644 --- a/libgfortran/generated/maxloc1_4_s1.c +++ b/libgfortran/generated/maxloc1_4_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_4_s4.c b/libgfortran/generated/maxloc1_4_s4.c index 16b1616..7920c7f 100644 --- a/libgfortran/generated/maxloc1_4_s4.c +++ b/libgfortran/generated/maxloc1_4_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_8_i1.c b/libgfortran/generated/maxloc1_8_i1.c index 297a19b..4cd775a 100644 --- a/libgfortran/generated/maxloc1_8_i1.c +++ b/libgfortran/generated/maxloc1_8_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_8_i16.c b/libgfortran/generated/maxloc1_8_i16.c index 773e3df..d8c3956 100644 --- a/libgfortran/generated/maxloc1_8_i16.c +++ b/libgfortran/generated/maxloc1_8_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_8_i2.c b/libgfortran/generated/maxloc1_8_i2.c index 204d010..170d6af 100644 --- a/libgfortran/generated/maxloc1_8_i2.c +++ b/libgfortran/generated/maxloc1_8_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_8_i4.c b/libgfortran/generated/maxloc1_8_i4.c index 7c73244..06daed5 100644 --- a/libgfortran/generated/maxloc1_8_i4.c +++ b/libgfortran/generated/maxloc1_8_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_8_i8.c b/libgfortran/generated/maxloc1_8_i8.c index a896587..1ffa15b 100644 --- a/libgfortran/generated/maxloc1_8_i8.c +++ b/libgfortran/generated/maxloc1_8_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_8_r10.c b/libgfortran/generated/maxloc1_8_r10.c index 4bc66cd..96f45e7 100644 --- a/libgfortran/generated/maxloc1_8_r10.c +++ b/libgfortran/generated/maxloc1_8_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_8_r16.c b/libgfortran/generated/maxloc1_8_r16.c index 959e3f9..70f042b 100644 --- a/libgfortran/generated/maxloc1_8_r16.c +++ b/libgfortran/generated/maxloc1_8_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_8_r4.c b/libgfortran/generated/maxloc1_8_r4.c index 0684964..a8506cb 100644 --- a/libgfortran/generated/maxloc1_8_r4.c +++ b/libgfortran/generated/maxloc1_8_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_8_r8.c b/libgfortran/generated/maxloc1_8_r8.c index ae40ff6..c29ee1e 100644 --- a/libgfortran/generated/maxloc1_8_r8.c +++ b/libgfortran/generated/maxloc1_8_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_8_s1.c b/libgfortran/generated/maxloc1_8_s1.c index f3d8697..3716334 100644 --- a/libgfortran/generated/maxloc1_8_s1.c +++ b/libgfortran/generated/maxloc1_8_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc1_8_s4.c b/libgfortran/generated/maxloc1_8_s4.c index bebc185..fd4c429 100644 --- a/libgfortran/generated/maxloc1_8_s4.c +++ b/libgfortran/generated/maxloc1_8_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc2_16_s1.c b/libgfortran/generated/maxloc2_16_s1.c index ac1da86..1a4a886 100644 --- a/libgfortran/generated/maxloc2_16_s1.c +++ b/libgfortran/generated/maxloc2_16_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc2_16_s4.c b/libgfortran/generated/maxloc2_16_s4.c index cfda242..31a6804 100644 --- a/libgfortran/generated/maxloc2_16_s4.c +++ b/libgfortran/generated/maxloc2_16_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc2_4_s1.c b/libgfortran/generated/maxloc2_4_s1.c index d7c1cf7..e68f50a 100644 --- a/libgfortran/generated/maxloc2_4_s1.c +++ b/libgfortran/generated/maxloc2_4_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc2_4_s4.c b/libgfortran/generated/maxloc2_4_s4.c index 6a53179..104bfc6 100644 --- a/libgfortran/generated/maxloc2_4_s4.c +++ b/libgfortran/generated/maxloc2_4_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc2_8_s1.c b/libgfortran/generated/maxloc2_8_s1.c index c244aa7..04c257ee 100644 --- a/libgfortran/generated/maxloc2_8_s1.c +++ b/libgfortran/generated/maxloc2_8_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxloc2_8_s4.c b/libgfortran/generated/maxloc2_8_s4.c index abdefef..fe7de50 100644 --- a/libgfortran/generated/maxloc2_8_s4.c +++ b/libgfortran/generated/maxloc2_8_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval0_s1.c b/libgfortran/generated/maxval0_s1.c index 4ed9258..54b3e2d 100644 --- a/libgfortran/generated/maxval0_s1.c +++ b/libgfortran/generated/maxval0_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval0_s4.c b/libgfortran/generated/maxval0_s4.c index 689b170..b360aab 100644 --- a/libgfortran/generated/maxval0_s4.c +++ b/libgfortran/generated/maxval0_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval1_s1.c b/libgfortran/generated/maxval1_s1.c index b9da5a3..d2cd5bd 100644 --- a/libgfortran/generated/maxval1_s1.c +++ b/libgfortran/generated/maxval1_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval1_s4.c b/libgfortran/generated/maxval1_s4.c index e98ea71..22f1e50 100644 --- a/libgfortran/generated/maxval1_s4.c +++ b/libgfortran/generated/maxval1_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval_i1.c b/libgfortran/generated/maxval_i1.c index fe47335..8102274 100644 --- a/libgfortran/generated/maxval_i1.c +++ b/libgfortran/generated/maxval_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval_i16.c b/libgfortran/generated/maxval_i16.c index 2117493..390682d 100644 --- a/libgfortran/generated/maxval_i16.c +++ b/libgfortran/generated/maxval_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval_i2.c b/libgfortran/generated/maxval_i2.c index 9a5a6b8..1e06322 100644 --- a/libgfortran/generated/maxval_i2.c +++ b/libgfortran/generated/maxval_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval_i4.c b/libgfortran/generated/maxval_i4.c index 5451a4e..cc1a74d 100644 --- a/libgfortran/generated/maxval_i4.c +++ b/libgfortran/generated/maxval_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval_i8.c b/libgfortran/generated/maxval_i8.c index 93d8124..e6ff1c8 100644 --- a/libgfortran/generated/maxval_i8.c +++ b/libgfortran/generated/maxval_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval_r10.c b/libgfortran/generated/maxval_r10.c index d3b10d1..93b34ee 100644 --- a/libgfortran/generated/maxval_r10.c +++ b/libgfortran/generated/maxval_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval_r16.c b/libgfortran/generated/maxval_r16.c index 32e935a..dd07522 100644 --- a/libgfortran/generated/maxval_r16.c +++ b/libgfortran/generated/maxval_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval_r4.c b/libgfortran/generated/maxval_r4.c index 9262719..f0ffddb 100644 --- a/libgfortran/generated/maxval_r4.c +++ b/libgfortran/generated/maxval_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/maxval_r8.c b/libgfortran/generated/maxval_r8.c index b12f34d..8c33d36 100644 --- a/libgfortran/generated/maxval_r8.c +++ b/libgfortran/generated/maxval_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_16_i1.c b/libgfortran/generated/minloc0_16_i1.c index e458174..e0b6891 100644 --- a/libgfortran/generated/minloc0_16_i1.c +++ b/libgfortran/generated/minloc0_16_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_16_i16.c b/libgfortran/generated/minloc0_16_i16.c index b15ec83..f392b72 100644 --- a/libgfortran/generated/minloc0_16_i16.c +++ b/libgfortran/generated/minloc0_16_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_16_i2.c b/libgfortran/generated/minloc0_16_i2.c index b544952..efb1c7b 100644 --- a/libgfortran/generated/minloc0_16_i2.c +++ b/libgfortran/generated/minloc0_16_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_16_i4.c b/libgfortran/generated/minloc0_16_i4.c index 5fa12c9..df5015c 100644 --- a/libgfortran/generated/minloc0_16_i4.c +++ b/libgfortran/generated/minloc0_16_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_16_i8.c b/libgfortran/generated/minloc0_16_i8.c index b8aefae..fc2e497 100644 --- a/libgfortran/generated/minloc0_16_i8.c +++ b/libgfortran/generated/minloc0_16_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_16_r10.c b/libgfortran/generated/minloc0_16_r10.c index 801b9e6..82560dd 100644 --- a/libgfortran/generated/minloc0_16_r10.c +++ b/libgfortran/generated/minloc0_16_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_16_r16.c b/libgfortran/generated/minloc0_16_r16.c index 499292f..4cdf480 100644 --- a/libgfortran/generated/minloc0_16_r16.c +++ b/libgfortran/generated/minloc0_16_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_16_r4.c b/libgfortran/generated/minloc0_16_r4.c index d4377d4..8b52b3e 100644 --- a/libgfortran/generated/minloc0_16_r4.c +++ b/libgfortran/generated/minloc0_16_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_16_r8.c b/libgfortran/generated/minloc0_16_r8.c index 43e2c7f..e5abdaf 100644 --- a/libgfortran/generated/minloc0_16_r8.c +++ b/libgfortran/generated/minloc0_16_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_16_s1.c b/libgfortran/generated/minloc0_16_s1.c index e43feaf..bdd4597 100644 --- a/libgfortran/generated/minloc0_16_s1.c +++ b/libgfortran/generated/minloc0_16_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_16_s4.c b/libgfortran/generated/minloc0_16_s4.c index 9e1ba35..01fbc79 100644 --- a/libgfortran/generated/minloc0_16_s4.c +++ b/libgfortran/generated/minloc0_16_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_4_i1.c b/libgfortran/generated/minloc0_4_i1.c index 756c2dc..44cf484 100644 --- a/libgfortran/generated/minloc0_4_i1.c +++ b/libgfortran/generated/minloc0_4_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_4_i16.c b/libgfortran/generated/minloc0_4_i16.c index 3e38c72..c3bba2b 100644 --- a/libgfortran/generated/minloc0_4_i16.c +++ b/libgfortran/generated/minloc0_4_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_4_i2.c b/libgfortran/generated/minloc0_4_i2.c index c8136b6..6341c82 100644 --- a/libgfortran/generated/minloc0_4_i2.c +++ b/libgfortran/generated/minloc0_4_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_4_i4.c b/libgfortran/generated/minloc0_4_i4.c index a0afc1a..22f24a2 100644 --- a/libgfortran/generated/minloc0_4_i4.c +++ b/libgfortran/generated/minloc0_4_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_4_i8.c b/libgfortran/generated/minloc0_4_i8.c index 21b818f..950bdec 100644 --- a/libgfortran/generated/minloc0_4_i8.c +++ b/libgfortran/generated/minloc0_4_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_4_r10.c b/libgfortran/generated/minloc0_4_r10.c index 6b86186..516d586 100644 --- a/libgfortran/generated/minloc0_4_r10.c +++ b/libgfortran/generated/minloc0_4_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_4_r16.c b/libgfortran/generated/minloc0_4_r16.c index ca3ca9d..792094c 100644 --- a/libgfortran/generated/minloc0_4_r16.c +++ b/libgfortran/generated/minloc0_4_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_4_r4.c b/libgfortran/generated/minloc0_4_r4.c index f33c455..72d4d9c 100644 --- a/libgfortran/generated/minloc0_4_r4.c +++ b/libgfortran/generated/minloc0_4_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_4_r8.c b/libgfortran/generated/minloc0_4_r8.c index 6658b01..d540a4d 100644 --- a/libgfortran/generated/minloc0_4_r8.c +++ b/libgfortran/generated/minloc0_4_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_4_s1.c b/libgfortran/generated/minloc0_4_s1.c index ab95a83..47d71c5 100644 --- a/libgfortran/generated/minloc0_4_s1.c +++ b/libgfortran/generated/minloc0_4_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_4_s4.c b/libgfortran/generated/minloc0_4_s4.c index 4afe02e..00ce3e9 100644 --- a/libgfortran/generated/minloc0_4_s4.c +++ b/libgfortran/generated/minloc0_4_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_8_i1.c b/libgfortran/generated/minloc0_8_i1.c index 8f0c48d..7f70385 100644 --- a/libgfortran/generated/minloc0_8_i1.c +++ b/libgfortran/generated/minloc0_8_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_8_i16.c b/libgfortran/generated/minloc0_8_i16.c index 50f5f86..79a1380 100644 --- a/libgfortran/generated/minloc0_8_i16.c +++ b/libgfortran/generated/minloc0_8_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_8_i2.c b/libgfortran/generated/minloc0_8_i2.c index 936cdf5..f4f4b03 100644 --- a/libgfortran/generated/minloc0_8_i2.c +++ b/libgfortran/generated/minloc0_8_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_8_i4.c b/libgfortran/generated/minloc0_8_i4.c index d6df315..47138e2 100644 --- a/libgfortran/generated/minloc0_8_i4.c +++ b/libgfortran/generated/minloc0_8_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_8_i8.c b/libgfortran/generated/minloc0_8_i8.c index df59e09..b92c106 100644 --- a/libgfortran/generated/minloc0_8_i8.c +++ b/libgfortran/generated/minloc0_8_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_8_r10.c b/libgfortran/generated/minloc0_8_r10.c index b57bc8d..aa89eab 100644 --- a/libgfortran/generated/minloc0_8_r10.c +++ b/libgfortran/generated/minloc0_8_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_8_r16.c b/libgfortran/generated/minloc0_8_r16.c index d76b290..ffb34ce 100644 --- a/libgfortran/generated/minloc0_8_r16.c +++ b/libgfortran/generated/minloc0_8_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_8_r4.c b/libgfortran/generated/minloc0_8_r4.c index ff3f300..5d60b68 100644 --- a/libgfortran/generated/minloc0_8_r4.c +++ b/libgfortran/generated/minloc0_8_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_8_r8.c b/libgfortran/generated/minloc0_8_r8.c index e132390..72f1e7b 100644 --- a/libgfortran/generated/minloc0_8_r8.c +++ b/libgfortran/generated/minloc0_8_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_8_s1.c b/libgfortran/generated/minloc0_8_s1.c index 0dc18fe..cefae90 100644 --- a/libgfortran/generated/minloc0_8_s1.c +++ b/libgfortran/generated/minloc0_8_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc0_8_s4.c b/libgfortran/generated/minloc0_8_s4.c index bd84788..162c966 100644 --- a/libgfortran/generated/minloc0_8_s4.c +++ b/libgfortran/generated/minloc0_8_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_16_i1.c b/libgfortran/generated/minloc1_16_i1.c index b27e146..862ece8 100644 --- a/libgfortran/generated/minloc1_16_i1.c +++ b/libgfortran/generated/minloc1_16_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_16_i16.c b/libgfortran/generated/minloc1_16_i16.c index be0cd69..e2dd18f 100644 --- a/libgfortran/generated/minloc1_16_i16.c +++ b/libgfortran/generated/minloc1_16_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_16_i2.c b/libgfortran/generated/minloc1_16_i2.c index 4b9dcac..a9d5a58 100644 --- a/libgfortran/generated/minloc1_16_i2.c +++ b/libgfortran/generated/minloc1_16_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_16_i4.c b/libgfortran/generated/minloc1_16_i4.c index b305ac8..be38dec 100644 --- a/libgfortran/generated/minloc1_16_i4.c +++ b/libgfortran/generated/minloc1_16_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_16_i8.c b/libgfortran/generated/minloc1_16_i8.c index 6a60af9..9b83616 100644 --- a/libgfortran/generated/minloc1_16_i8.c +++ b/libgfortran/generated/minloc1_16_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_16_r10.c b/libgfortran/generated/minloc1_16_r10.c index bb5546f..78f0ba0 100644 --- a/libgfortran/generated/minloc1_16_r10.c +++ b/libgfortran/generated/minloc1_16_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_16_r16.c b/libgfortran/generated/minloc1_16_r16.c index 636195e8..2ff24c1 100644 --- a/libgfortran/generated/minloc1_16_r16.c +++ b/libgfortran/generated/minloc1_16_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_16_r4.c b/libgfortran/generated/minloc1_16_r4.c index 89f453f..8ac638a 100644 --- a/libgfortran/generated/minloc1_16_r4.c +++ b/libgfortran/generated/minloc1_16_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_16_r8.c b/libgfortran/generated/minloc1_16_r8.c index 42ca7da..840956b 100644 --- a/libgfortran/generated/minloc1_16_r8.c +++ b/libgfortran/generated/minloc1_16_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_16_s1.c b/libgfortran/generated/minloc1_16_s1.c index 80269a6..4c90fd1 100644 --- a/libgfortran/generated/minloc1_16_s1.c +++ b/libgfortran/generated/minloc1_16_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_16_s4.c b/libgfortran/generated/minloc1_16_s4.c index 1ba1a01..8afbccf 100644 --- a/libgfortran/generated/minloc1_16_s4.c +++ b/libgfortran/generated/minloc1_16_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_4_i1.c b/libgfortran/generated/minloc1_4_i1.c index 3ff1eb1..0f2a2be 100644 --- a/libgfortran/generated/minloc1_4_i1.c +++ b/libgfortran/generated/minloc1_4_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_4_i16.c b/libgfortran/generated/minloc1_4_i16.c index 10f07a1..d373c76 100644 --- a/libgfortran/generated/minloc1_4_i16.c +++ b/libgfortran/generated/minloc1_4_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_4_i2.c b/libgfortran/generated/minloc1_4_i2.c index 344202d..63aaee3 100644 --- a/libgfortran/generated/minloc1_4_i2.c +++ b/libgfortran/generated/minloc1_4_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_4_i4.c b/libgfortran/generated/minloc1_4_i4.c index ac9d44c..19aa5b2 100644 --- a/libgfortran/generated/minloc1_4_i4.c +++ b/libgfortran/generated/minloc1_4_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_4_i8.c b/libgfortran/generated/minloc1_4_i8.c index 11d2120..d9fe2c58 100644 --- a/libgfortran/generated/minloc1_4_i8.c +++ b/libgfortran/generated/minloc1_4_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_4_r10.c b/libgfortran/generated/minloc1_4_r10.c index 3365e7a..10373c3 100644 --- a/libgfortran/generated/minloc1_4_r10.c +++ b/libgfortran/generated/minloc1_4_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_4_r16.c b/libgfortran/generated/minloc1_4_r16.c index 3b5989c..ef0391f 100644 --- a/libgfortran/generated/minloc1_4_r16.c +++ b/libgfortran/generated/minloc1_4_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_4_r4.c b/libgfortran/generated/minloc1_4_r4.c index d79f905..b70367d 100644 --- a/libgfortran/generated/minloc1_4_r4.c +++ b/libgfortran/generated/minloc1_4_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_4_r8.c b/libgfortran/generated/minloc1_4_r8.c index 3175f33..76fb6c8 100644 --- a/libgfortran/generated/minloc1_4_r8.c +++ b/libgfortran/generated/minloc1_4_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_4_s1.c b/libgfortran/generated/minloc1_4_s1.c index bbead6b..9b942c9 100644 --- a/libgfortran/generated/minloc1_4_s1.c +++ b/libgfortran/generated/minloc1_4_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_4_s4.c b/libgfortran/generated/minloc1_4_s4.c index 673702b..33f08b7 100644 --- a/libgfortran/generated/minloc1_4_s4.c +++ b/libgfortran/generated/minloc1_4_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_8_i1.c b/libgfortran/generated/minloc1_8_i1.c index bfd9354..0644497 100644 --- a/libgfortran/generated/minloc1_8_i1.c +++ b/libgfortran/generated/minloc1_8_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_8_i16.c b/libgfortran/generated/minloc1_8_i16.c index 1fc9129..1c9e8d89 100644 --- a/libgfortran/generated/minloc1_8_i16.c +++ b/libgfortran/generated/minloc1_8_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_8_i2.c b/libgfortran/generated/minloc1_8_i2.c index 5cf6eed..3762ed1 100644 --- a/libgfortran/generated/minloc1_8_i2.c +++ b/libgfortran/generated/minloc1_8_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_8_i4.c b/libgfortran/generated/minloc1_8_i4.c index 8d7a8f3..efbe13a 100644 --- a/libgfortran/generated/minloc1_8_i4.c +++ b/libgfortran/generated/minloc1_8_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_8_i8.c b/libgfortran/generated/minloc1_8_i8.c index 0035263..6295ae3 100644 --- a/libgfortran/generated/minloc1_8_i8.c +++ b/libgfortran/generated/minloc1_8_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_8_r10.c b/libgfortran/generated/minloc1_8_r10.c index 918c0b1..f0f1d3f 100644 --- a/libgfortran/generated/minloc1_8_r10.c +++ b/libgfortran/generated/minloc1_8_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_8_r16.c b/libgfortran/generated/minloc1_8_r16.c index c5b3595..dc32144 100644 --- a/libgfortran/generated/minloc1_8_r16.c +++ b/libgfortran/generated/minloc1_8_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_8_r4.c b/libgfortran/generated/minloc1_8_r4.c index 2112352..5178236 100644 --- a/libgfortran/generated/minloc1_8_r4.c +++ b/libgfortran/generated/minloc1_8_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_8_r8.c b/libgfortran/generated/minloc1_8_r8.c index d3d303e..863a513 100644 --- a/libgfortran/generated/minloc1_8_r8.c +++ b/libgfortran/generated/minloc1_8_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_8_s1.c b/libgfortran/generated/minloc1_8_s1.c index 90ab353..88ab4cf 100644 --- a/libgfortran/generated/minloc1_8_s1.c +++ b/libgfortran/generated/minloc1_8_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc1_8_s4.c b/libgfortran/generated/minloc1_8_s4.c index 10c0208..65fb691 100644 --- a/libgfortran/generated/minloc1_8_s4.c +++ b/libgfortran/generated/minloc1_8_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc2_16_s1.c b/libgfortran/generated/minloc2_16_s1.c index b0ae953..841aeeb 100644 --- a/libgfortran/generated/minloc2_16_s1.c +++ b/libgfortran/generated/minloc2_16_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc2_16_s4.c b/libgfortran/generated/minloc2_16_s4.c index bd02ae1..7b71642 100644 --- a/libgfortran/generated/minloc2_16_s4.c +++ b/libgfortran/generated/minloc2_16_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc2_4_s1.c b/libgfortran/generated/minloc2_4_s1.c index 4862086..d5b88e1 100644 --- a/libgfortran/generated/minloc2_4_s1.c +++ b/libgfortran/generated/minloc2_4_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc2_4_s4.c b/libgfortran/generated/minloc2_4_s4.c index ae53dc9..6213778 100644 --- a/libgfortran/generated/minloc2_4_s4.c +++ b/libgfortran/generated/minloc2_4_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc2_8_s1.c b/libgfortran/generated/minloc2_8_s1.c index 6948b36..7aacd28 100644 --- a/libgfortran/generated/minloc2_8_s1.c +++ b/libgfortran/generated/minloc2_8_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minloc2_8_s4.c b/libgfortran/generated/minloc2_8_s4.c index 4d9a61a..c94bc74 100644 --- a/libgfortran/generated/minloc2_8_s4.c +++ b/libgfortran/generated/minloc2_8_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval0_s1.c b/libgfortran/generated/minval0_s1.c index 311c9bd..a346f47 100644 --- a/libgfortran/generated/minval0_s1.c +++ b/libgfortran/generated/minval0_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval0_s4.c b/libgfortran/generated/minval0_s4.c index a2c44af..2b78ebd 100644 --- a/libgfortran/generated/minval0_s4.c +++ b/libgfortran/generated/minval0_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval1_s1.c b/libgfortran/generated/minval1_s1.c index 02eb41e..c4f8cd1 100644 --- a/libgfortran/generated/minval1_s1.c +++ b/libgfortran/generated/minval1_s1.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval1_s4.c b/libgfortran/generated/minval1_s4.c index b6a794e..b513980 100644 --- a/libgfortran/generated/minval1_s4.c +++ b/libgfortran/generated/minval1_s4.c @@ -1,5 +1,5 @@ /* Implementation of the MAXVAL intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval_i1.c b/libgfortran/generated/minval_i1.c index 9c899ba..4794d25 100644 --- a/libgfortran/generated/minval_i1.c +++ b/libgfortran/generated/minval_i1.c @@ -1,5 +1,5 @@ /* Implementation of the MINVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval_i16.c b/libgfortran/generated/minval_i16.c index 8b427f9..fc57082 100644 --- a/libgfortran/generated/minval_i16.c +++ b/libgfortran/generated/minval_i16.c @@ -1,5 +1,5 @@ /* Implementation of the MINVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval_i2.c b/libgfortran/generated/minval_i2.c index 79f3c9b..34c3e2f 100644 --- a/libgfortran/generated/minval_i2.c +++ b/libgfortran/generated/minval_i2.c @@ -1,5 +1,5 @@ /* Implementation of the MINVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval_i4.c b/libgfortran/generated/minval_i4.c index 3b183066..de9f299 100644 --- a/libgfortran/generated/minval_i4.c +++ b/libgfortran/generated/minval_i4.c @@ -1,5 +1,5 @@ /* Implementation of the MINVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval_i8.c b/libgfortran/generated/minval_i8.c index 5d415f3..b7351d8 100644 --- a/libgfortran/generated/minval_i8.c +++ b/libgfortran/generated/minval_i8.c @@ -1,5 +1,5 @@ /* Implementation of the MINVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval_r10.c b/libgfortran/generated/minval_r10.c index c86d8c6..76be913 100644 --- a/libgfortran/generated/minval_r10.c +++ b/libgfortran/generated/minval_r10.c @@ -1,5 +1,5 @@ /* Implementation of the MINVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval_r16.c b/libgfortran/generated/minval_r16.c index 421026d..0ddca01 100644 --- a/libgfortran/generated/minval_r16.c +++ b/libgfortran/generated/minval_r16.c @@ -1,5 +1,5 @@ /* Implementation of the MINVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval_r4.c b/libgfortran/generated/minval_r4.c index ff3d919..6afb656 100644 --- a/libgfortran/generated/minval_r4.c +++ b/libgfortran/generated/minval_r4.c @@ -1,5 +1,5 @@ /* Implementation of the MINVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/minval_r8.c b/libgfortran/generated/minval_r8.c index 0970c31..aa82435 100644 --- a/libgfortran/generated/minval_r8.c +++ b/libgfortran/generated/minval_r8.c @@ -1,5 +1,5 @@ /* Implementation of the MINVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/misc_specifics.F90 b/libgfortran/generated/misc_specifics.F90 index 6317fbd..edebec8 100644 --- a/libgfortran/generated/misc_specifics.F90 +++ b/libgfortran/generated/misc_specifics.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/norm2_r10.c b/libgfortran/generated/norm2_r10.c index 4f6ecee..a8715ab 100644 --- a/libgfortran/generated/norm2_r10.c +++ b/libgfortran/generated/norm2_r10.c @@ -1,5 +1,5 @@ /* Implementation of the NORM2 intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/norm2_r16.c b/libgfortran/generated/norm2_r16.c index 596195f..7461abf 100644 --- a/libgfortran/generated/norm2_r16.c +++ b/libgfortran/generated/norm2_r16.c @@ -1,5 +1,5 @@ /* Implementation of the NORM2 intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/norm2_r4.c b/libgfortran/generated/norm2_r4.c index 4f61ea3..c240fd3 100644 --- a/libgfortran/generated/norm2_r4.c +++ b/libgfortran/generated/norm2_r4.c @@ -1,5 +1,5 @@ /* Implementation of the NORM2 intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/norm2_r8.c b/libgfortran/generated/norm2_r8.c index d325236..a2ec173 100644 --- a/libgfortran/generated/norm2_r8.c +++ b/libgfortran/generated/norm2_r8.c @@ -1,5 +1,5 @@ /* Implementation of the NORM2 intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_c10.c b/libgfortran/generated/pack_c10.c index 3a896a8..81c1ead 100644 --- a/libgfortran/generated/pack_c10.c +++ b/libgfortran/generated/pack_c10.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_c16.c b/libgfortran/generated/pack_c16.c index 1e811a5..fb20ec2 100644 --- a/libgfortran/generated/pack_c16.c +++ b/libgfortran/generated/pack_c16.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_c4.c b/libgfortran/generated/pack_c4.c index fc3c692..abdad84 100644 --- a/libgfortran/generated/pack_c4.c +++ b/libgfortran/generated/pack_c4.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_c8.c b/libgfortran/generated/pack_c8.c index 1839af7..42f3612 100644 --- a/libgfortran/generated/pack_c8.c +++ b/libgfortran/generated/pack_c8.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_i1.c b/libgfortran/generated/pack_i1.c index e30195d..3e3c2ce 100644 --- a/libgfortran/generated/pack_i1.c +++ b/libgfortran/generated/pack_i1.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_i16.c b/libgfortran/generated/pack_i16.c index 1b6f09e..4fa0307 100644 --- a/libgfortran/generated/pack_i16.c +++ b/libgfortran/generated/pack_i16.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_i2.c b/libgfortran/generated/pack_i2.c index b742a54..dc609e6 100644 --- a/libgfortran/generated/pack_i2.c +++ b/libgfortran/generated/pack_i2.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_i4.c b/libgfortran/generated/pack_i4.c index ae61f5c..16c09c6 100644 --- a/libgfortran/generated/pack_i4.c +++ b/libgfortran/generated/pack_i4.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_i8.c b/libgfortran/generated/pack_i8.c index 2532d9f..8094c05 100644 --- a/libgfortran/generated/pack_i8.c +++ b/libgfortran/generated/pack_i8.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_r10.c b/libgfortran/generated/pack_r10.c index 3ff9d12..31f0cf9 100644 --- a/libgfortran/generated/pack_r10.c +++ b/libgfortran/generated/pack_r10.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_r16.c b/libgfortran/generated/pack_r16.c index 46d1ffb..928db6b 100644 --- a/libgfortran/generated/pack_r16.c +++ b/libgfortran/generated/pack_r16.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_r4.c b/libgfortran/generated/pack_r4.c index 0676bd1..9604eb2 100644 --- a/libgfortran/generated/pack_r4.c +++ b/libgfortran/generated/pack_r4.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pack_r8.c b/libgfortran/generated/pack_r8.c index b3d3fd2..2221a45 100644 --- a/libgfortran/generated/pack_r8.c +++ b/libgfortran/generated/pack_r8.c @@ -1,5 +1,5 @@ /* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/parity_l1.c b/libgfortran/generated/parity_l1.c index 34cac76..011c9c8 100644 --- a/libgfortran/generated/parity_l1.c +++ b/libgfortran/generated/parity_l1.c @@ -1,5 +1,5 @@ /* Implementation of the PARITY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/parity_l16.c b/libgfortran/generated/parity_l16.c index 8aae303..8e08b2f 100644 --- a/libgfortran/generated/parity_l16.c +++ b/libgfortran/generated/parity_l16.c @@ -1,5 +1,5 @@ /* Implementation of the PARITY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/parity_l2.c b/libgfortran/generated/parity_l2.c index 0d87c52..0ae04ec 100644 --- a/libgfortran/generated/parity_l2.c +++ b/libgfortran/generated/parity_l2.c @@ -1,5 +1,5 @@ /* Implementation of the PARITY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/parity_l4.c b/libgfortran/generated/parity_l4.c index 5c524ad..14a03cc 100644 --- a/libgfortran/generated/parity_l4.c +++ b/libgfortran/generated/parity_l4.c @@ -1,5 +1,5 @@ /* Implementation of the PARITY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/parity_l8.c b/libgfortran/generated/parity_l8.c index d655ebd..86d1744 100644 --- a/libgfortran/generated/parity_l8.c +++ b/libgfortran/generated/parity_l8.c @@ -1,5 +1,5 @@ /* Implementation of the PARITY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/pow_c10_i16.c b/libgfortran/generated/pow_c10_i16.c index bb6a87b..4c75fe0 100644 --- a/libgfortran/generated/pow_c10_i16.c +++ b/libgfortran/generated/pow_c10_i16.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_c10_i4.c b/libgfortran/generated/pow_c10_i4.c index 846524b..5a941c7 100644 --- a/libgfortran/generated/pow_c10_i4.c +++ b/libgfortran/generated/pow_c10_i4.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_c10_i8.c b/libgfortran/generated/pow_c10_i8.c index 3c79a84..49ab90f 100644 --- a/libgfortran/generated/pow_c10_i8.c +++ b/libgfortran/generated/pow_c10_i8.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_c16_i16.c b/libgfortran/generated/pow_c16_i16.c index 44800f4..c70ca6c 100644 --- a/libgfortran/generated/pow_c16_i16.c +++ b/libgfortran/generated/pow_c16_i16.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_c16_i4.c b/libgfortran/generated/pow_c16_i4.c index 11153e4..8adce6e 100644 --- a/libgfortran/generated/pow_c16_i4.c +++ b/libgfortran/generated/pow_c16_i4.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_c16_i8.c b/libgfortran/generated/pow_c16_i8.c index cedb835..7762837 100644 --- a/libgfortran/generated/pow_c16_i8.c +++ b/libgfortran/generated/pow_c16_i8.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_c4_i16.c b/libgfortran/generated/pow_c4_i16.c index 46ab04b..14080d4 100644 --- a/libgfortran/generated/pow_c4_i16.c +++ b/libgfortran/generated/pow_c4_i16.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_c4_i4.c b/libgfortran/generated/pow_c4_i4.c index 6026bcf..9763c4f 100644 --- a/libgfortran/generated/pow_c4_i4.c +++ b/libgfortran/generated/pow_c4_i4.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_c4_i8.c b/libgfortran/generated/pow_c4_i8.c index b458851..8f3c496 100644 --- a/libgfortran/generated/pow_c4_i8.c +++ b/libgfortran/generated/pow_c4_i8.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_c8_i16.c b/libgfortran/generated/pow_c8_i16.c index 49e73e7..5f7c26e 100644 --- a/libgfortran/generated/pow_c8_i16.c +++ b/libgfortran/generated/pow_c8_i16.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_c8_i4.c b/libgfortran/generated/pow_c8_i4.c index d167878..6492b66 100644 --- a/libgfortran/generated/pow_c8_i4.c +++ b/libgfortran/generated/pow_c8_i4.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_c8_i8.c b/libgfortran/generated/pow_c8_i8.c index 46b07d8..2e804c4 100644 --- a/libgfortran/generated/pow_c8_i8.c +++ b/libgfortran/generated/pow_c8_i8.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_i16_i16.c b/libgfortran/generated/pow_i16_i16.c index b713e1f..923cbd7 100644 --- a/libgfortran/generated/pow_i16_i16.c +++ b/libgfortran/generated/pow_i16_i16.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_i16_i4.c b/libgfortran/generated/pow_i16_i4.c index 038c947..e933ad2 100644 --- a/libgfortran/generated/pow_i16_i4.c +++ b/libgfortran/generated/pow_i16_i4.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_i16_i8.c b/libgfortran/generated/pow_i16_i8.c index 1d4a692..9b67f78 100644 --- a/libgfortran/generated/pow_i16_i8.c +++ b/libgfortran/generated/pow_i16_i8.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_i4_i16.c b/libgfortran/generated/pow_i4_i16.c index f124d30..d72c44f 100644 --- a/libgfortran/generated/pow_i4_i16.c +++ b/libgfortran/generated/pow_i4_i16.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_i4_i4.c b/libgfortran/generated/pow_i4_i4.c index 8e18772..8413fc4 100644 --- a/libgfortran/generated/pow_i4_i4.c +++ b/libgfortran/generated/pow_i4_i4.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_i4_i8.c b/libgfortran/generated/pow_i4_i8.c index 066b3e2..b165e03 100644 --- a/libgfortran/generated/pow_i4_i8.c +++ b/libgfortran/generated/pow_i4_i8.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_i8_i16.c b/libgfortran/generated/pow_i8_i16.c index dc2938e..2304d04 100644 --- a/libgfortran/generated/pow_i8_i16.c +++ b/libgfortran/generated/pow_i8_i16.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_i8_i4.c b/libgfortran/generated/pow_i8_i4.c index cb84593..0d234fe 100644 --- a/libgfortran/generated/pow_i8_i4.c +++ b/libgfortran/generated/pow_i8_i4.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_i8_i8.c b/libgfortran/generated/pow_i8_i8.c index 0c34c02..761703c 100644 --- a/libgfortran/generated/pow_i8_i8.c +++ b/libgfortran/generated/pow_i8_i8.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_r10_i16.c b/libgfortran/generated/pow_r10_i16.c index b3798ba..c924335 100644 --- a/libgfortran/generated/pow_r10_i16.c +++ b/libgfortran/generated/pow_r10_i16.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_r10_i8.c b/libgfortran/generated/pow_r10_i8.c index 8da7520..d31c8a9 100644 --- a/libgfortran/generated/pow_r10_i8.c +++ b/libgfortran/generated/pow_r10_i8.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_r16_i16.c b/libgfortran/generated/pow_r16_i16.c index 8e48847..7003394 100644 --- a/libgfortran/generated/pow_r16_i16.c +++ b/libgfortran/generated/pow_r16_i16.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_r16_i4.c b/libgfortran/generated/pow_r16_i4.c index 1c682a4..5158f0e 100644 --- a/libgfortran/generated/pow_r16_i4.c +++ b/libgfortran/generated/pow_r16_i4.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_r16_i8.c b/libgfortran/generated/pow_r16_i8.c index ec69b59..a5a65d0 100644 --- a/libgfortran/generated/pow_r16_i8.c +++ b/libgfortran/generated/pow_r16_i8.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_r4_i16.c b/libgfortran/generated/pow_r4_i16.c index b9ed3f7..72815c1 100644 --- a/libgfortran/generated/pow_r4_i16.c +++ b/libgfortran/generated/pow_r4_i16.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_r4_i8.c b/libgfortran/generated/pow_r4_i8.c index 1daf0c6..1e25251 100644 --- a/libgfortran/generated/pow_r4_i8.c +++ b/libgfortran/generated/pow_r4_i8.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_r8_i16.c b/libgfortran/generated/pow_r8_i16.c index 9025eb4..63a2872 100644 --- a/libgfortran/generated/pow_r8_i16.c +++ b/libgfortran/generated/pow_r8_i16.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/pow_r8_i8.c b/libgfortran/generated/pow_r8_i8.c index 5ad77c7..c71222a8 100644 --- a/libgfortran/generated/pow_r8_i8.c +++ b/libgfortran/generated/pow_r8_i8.c @@ -1,5 +1,5 @@ /* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/product_c10.c b/libgfortran/generated/product_c10.c index b84870c..ef9c98f 100644 --- a/libgfortran/generated/product_c10.c +++ b/libgfortran/generated/product_c10.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/product_c16.c b/libgfortran/generated/product_c16.c index e1618c5..8e06baf 100644 --- a/libgfortran/generated/product_c16.c +++ b/libgfortran/generated/product_c16.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/product_c4.c b/libgfortran/generated/product_c4.c index 679670c..76fb9fb 100644 --- a/libgfortran/generated/product_c4.c +++ b/libgfortran/generated/product_c4.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/product_c8.c b/libgfortran/generated/product_c8.c index 1f4dd10..97dd825 100644 --- a/libgfortran/generated/product_c8.c +++ b/libgfortran/generated/product_c8.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/product_i1.c b/libgfortran/generated/product_i1.c index 43e20b8..83e87b9 100644 --- a/libgfortran/generated/product_i1.c +++ b/libgfortran/generated/product_i1.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/product_i16.c b/libgfortran/generated/product_i16.c index d786c95..462e581 100644 --- a/libgfortran/generated/product_i16.c +++ b/libgfortran/generated/product_i16.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/product_i2.c b/libgfortran/generated/product_i2.c index bdb8755..e99e3e3 100644 --- a/libgfortran/generated/product_i2.c +++ b/libgfortran/generated/product_i2.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/product_i4.c b/libgfortran/generated/product_i4.c index 1328055..ebca81e 100644 --- a/libgfortran/generated/product_i4.c +++ b/libgfortran/generated/product_i4.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/product_i8.c b/libgfortran/generated/product_i8.c index 5adf2de..8291716 100644 --- a/libgfortran/generated/product_i8.c +++ b/libgfortran/generated/product_i8.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/product_r10.c b/libgfortran/generated/product_r10.c index 404b1a5..f98aeed 100644 --- a/libgfortran/generated/product_r10.c +++ b/libgfortran/generated/product_r10.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/product_r16.c b/libgfortran/generated/product_r16.c index 592a9b9..042f04e 100644 --- a/libgfortran/generated/product_r16.c +++ b/libgfortran/generated/product_r16.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/product_r4.c b/libgfortran/generated/product_r4.c index 882c091..60985df 100644 --- a/libgfortran/generated/product_r4.c +++ b/libgfortran/generated/product_r4.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/product_r8.c b/libgfortran/generated/product_r8.c index cc14549..196db93 100644 --- a/libgfortran/generated/product_r8.c +++ b/libgfortran/generated/product_r8.c @@ -1,5 +1,5 @@ /* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/reshape_c10.c b/libgfortran/generated/reshape_c10.c index ce6c9a2..68331f6 100644 --- a/libgfortran/generated/reshape_c10.c +++ b/libgfortran/generated/reshape_c10.c @@ -1,5 +1,5 @@ /* Implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/reshape_c16.c b/libgfortran/generated/reshape_c16.c index 4ca6722..546811e 100644 --- a/libgfortran/generated/reshape_c16.c +++ b/libgfortran/generated/reshape_c16.c @@ -1,5 +1,5 @@ /* Implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/reshape_c4.c b/libgfortran/generated/reshape_c4.c index dc1b8ee..c86a8c7 100644 --- a/libgfortran/generated/reshape_c4.c +++ b/libgfortran/generated/reshape_c4.c @@ -1,5 +1,5 @@ /* Implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/reshape_c8.c b/libgfortran/generated/reshape_c8.c index 88d03d7..cb99994 100644 --- a/libgfortran/generated/reshape_c8.c +++ b/libgfortran/generated/reshape_c8.c @@ -1,5 +1,5 @@ /* Implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/reshape_i16.c b/libgfortran/generated/reshape_i16.c index fd5e8e7..0d4d706 100644 --- a/libgfortran/generated/reshape_i16.c +++ b/libgfortran/generated/reshape_i16.c @@ -1,5 +1,5 @@ /* Implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/reshape_i4.c b/libgfortran/generated/reshape_i4.c index 149d185..fd356b5 100644 --- a/libgfortran/generated/reshape_i4.c +++ b/libgfortran/generated/reshape_i4.c @@ -1,5 +1,5 @@ /* Implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/reshape_i8.c b/libgfortran/generated/reshape_i8.c index a4c95a2..6a16e39 100644 --- a/libgfortran/generated/reshape_i8.c +++ b/libgfortran/generated/reshape_i8.c @@ -1,5 +1,5 @@ /* Implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/reshape_r10.c b/libgfortran/generated/reshape_r10.c index 47e803f..e47eabf 100644 --- a/libgfortran/generated/reshape_r10.c +++ b/libgfortran/generated/reshape_r10.c @@ -1,5 +1,5 @@ /* Implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/reshape_r16.c b/libgfortran/generated/reshape_r16.c index c210dfd..7236d2b 100644 --- a/libgfortran/generated/reshape_r16.c +++ b/libgfortran/generated/reshape_r16.c @@ -1,5 +1,5 @@ /* Implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/reshape_r4.c b/libgfortran/generated/reshape_r4.c index a4f9b07..483e726 100644 --- a/libgfortran/generated/reshape_r4.c +++ b/libgfortran/generated/reshape_r4.c @@ -1,5 +1,5 @@ /* Implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/reshape_r8.c b/libgfortran/generated/reshape_r8.c index 955463c..011f252 100644 --- a/libgfortran/generated/reshape_r8.c +++ b/libgfortran/generated/reshape_r8.c @@ -1,5 +1,5 @@ /* Implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/shape_i1.c b/libgfortran/generated/shape_i1.c index f93adf2..c0e0e6a 100644 --- a/libgfortran/generated/shape_i1.c +++ b/libgfortran/generated/shape_i1.c @@ -1,5 +1,5 @@ /* Implementation of the SHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/shape_i16.c b/libgfortran/generated/shape_i16.c index fade4f0..89abddf 100644 --- a/libgfortran/generated/shape_i16.c +++ b/libgfortran/generated/shape_i16.c @@ -1,5 +1,5 @@ /* Implementation of the SHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/shape_i2.c b/libgfortran/generated/shape_i2.c index db477eb..15ee5db 100644 --- a/libgfortran/generated/shape_i2.c +++ b/libgfortran/generated/shape_i2.c @@ -1,5 +1,5 @@ /* Implementation of the SHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/shape_i4.c b/libgfortran/generated/shape_i4.c index bef5508..e054318 100644 --- a/libgfortran/generated/shape_i4.c +++ b/libgfortran/generated/shape_i4.c @@ -1,5 +1,5 @@ /* Implementation of the SHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/shape_i8.c b/libgfortran/generated/shape_i8.c index 1866dee..a491fed 100644 --- a/libgfortran/generated/shape_i8.c +++ b/libgfortran/generated/shape_i8.c @@ -1,5 +1,5 @@ /* Implementation of the SHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/generated/spread_c10.c b/libgfortran/generated/spread_c10.c index 2c2b71fd..eca8ab9 100644 --- a/libgfortran/generated/spread_c10.c +++ b/libgfortran/generated/spread_c10.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/spread_c16.c b/libgfortran/generated/spread_c16.c index e0dd156..5297954 100644 --- a/libgfortran/generated/spread_c16.c +++ b/libgfortran/generated/spread_c16.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/spread_c4.c b/libgfortran/generated/spread_c4.c index b0bbc66..b7dc830 100644 --- a/libgfortran/generated/spread_c4.c +++ b/libgfortran/generated/spread_c4.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/spread_c8.c b/libgfortran/generated/spread_c8.c index fb10ef8..6887db1 100644 --- a/libgfortran/generated/spread_c8.c +++ b/libgfortran/generated/spread_c8.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/spread_i1.c b/libgfortran/generated/spread_i1.c index 5cd356e..11596b7 100644 --- a/libgfortran/generated/spread_i1.c +++ b/libgfortran/generated/spread_i1.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/spread_i16.c b/libgfortran/generated/spread_i16.c index 9ff7a65..d948d8e 100644 --- a/libgfortran/generated/spread_i16.c +++ b/libgfortran/generated/spread_i16.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/spread_i2.c b/libgfortran/generated/spread_i2.c index c4e1103..7baf814 100644 --- a/libgfortran/generated/spread_i2.c +++ b/libgfortran/generated/spread_i2.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/spread_i4.c b/libgfortran/generated/spread_i4.c index 3b69fa7..b93a3ee 100644 --- a/libgfortran/generated/spread_i4.c +++ b/libgfortran/generated/spread_i4.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/spread_i8.c b/libgfortran/generated/spread_i8.c index 0cac88d..fa0bc49 100644 --- a/libgfortran/generated/spread_i8.c +++ b/libgfortran/generated/spread_i8.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/spread_r10.c b/libgfortran/generated/spread_r10.c index 43f41dbb..32ed606 100644 --- a/libgfortran/generated/spread_r10.c +++ b/libgfortran/generated/spread_r10.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/spread_r16.c b/libgfortran/generated/spread_r16.c index 555247d..9d9cb8c 100644 --- a/libgfortran/generated/spread_r16.c +++ b/libgfortran/generated/spread_r16.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/spread_r4.c b/libgfortran/generated/spread_r4.c index c0ae50d..96d1587 100644 --- a/libgfortran/generated/spread_r4.c +++ b/libgfortran/generated/spread_r4.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/spread_r8.c b/libgfortran/generated/spread_r8.c index 610ac62..bba49c5 100644 --- a/libgfortran/generated/spread_r8.c +++ b/libgfortran/generated/spread_r8.c @@ -1,5 +1,5 @@ /* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/generated/sum_c10.c b/libgfortran/generated/sum_c10.c index d3e8550..3603eb0 100644 --- a/libgfortran/generated/sum_c10.c +++ b/libgfortran/generated/sum_c10.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/sum_c16.c b/libgfortran/generated/sum_c16.c index 280c2ff..a886940 100644 --- a/libgfortran/generated/sum_c16.c +++ b/libgfortran/generated/sum_c16.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/sum_c4.c b/libgfortran/generated/sum_c4.c index 0e3a74d..1d0015c 100644 --- a/libgfortran/generated/sum_c4.c +++ b/libgfortran/generated/sum_c4.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/sum_c8.c b/libgfortran/generated/sum_c8.c index f04f374..54a1626 100644 --- a/libgfortran/generated/sum_c8.c +++ b/libgfortran/generated/sum_c8.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/sum_i1.c b/libgfortran/generated/sum_i1.c index b7e8a98..74908b9 100644 --- a/libgfortran/generated/sum_i1.c +++ b/libgfortran/generated/sum_i1.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/sum_i16.c b/libgfortran/generated/sum_i16.c index 489b9bb..d490c7e 100644 --- a/libgfortran/generated/sum_i16.c +++ b/libgfortran/generated/sum_i16.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/sum_i2.c b/libgfortran/generated/sum_i2.c index 40304c8..d5a91e9 100644 --- a/libgfortran/generated/sum_i2.c +++ b/libgfortran/generated/sum_i2.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/sum_i4.c b/libgfortran/generated/sum_i4.c index 736ccd1..4eba054 100644 --- a/libgfortran/generated/sum_i4.c +++ b/libgfortran/generated/sum_i4.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/sum_i8.c b/libgfortran/generated/sum_i8.c index 0eb9e3f..203c83c 100644 --- a/libgfortran/generated/sum_i8.c +++ b/libgfortran/generated/sum_i8.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/sum_r10.c b/libgfortran/generated/sum_r10.c index e37dd26..ba28045 100644 --- a/libgfortran/generated/sum_r10.c +++ b/libgfortran/generated/sum_r10.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/sum_r16.c b/libgfortran/generated/sum_r16.c index b305803..593711c 100644 --- a/libgfortran/generated/sum_r16.c +++ b/libgfortran/generated/sum_r16.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/sum_r4.c b/libgfortran/generated/sum_r4.c index c53dc7e..24d4bfd 100644 --- a/libgfortran/generated/sum_r4.c +++ b/libgfortran/generated/sum_r4.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/sum_r8.c b/libgfortran/generated/sum_r8.c index 4657def..24b882e 100644 --- a/libgfortran/generated/sum_r8.c +++ b/libgfortran/generated/sum_r8.c @@ -1,5 +1,5 @@ /* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/generated/unpack_c10.c b/libgfortran/generated/unpack_c10.c index 7e1e008..a314e6e 100644 --- a/libgfortran/generated/unpack_c10.c +++ b/libgfortran/generated/unpack_c10.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/generated/unpack_c16.c b/libgfortran/generated/unpack_c16.c index 33b208a..d1f2b71 100644 --- a/libgfortran/generated/unpack_c16.c +++ b/libgfortran/generated/unpack_c16.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/generated/unpack_c4.c b/libgfortran/generated/unpack_c4.c index 7162ee7..33728c2 100644 --- a/libgfortran/generated/unpack_c4.c +++ b/libgfortran/generated/unpack_c4.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/generated/unpack_c8.c b/libgfortran/generated/unpack_c8.c index b4a3030..21acb36 100644 --- a/libgfortran/generated/unpack_c8.c +++ b/libgfortran/generated/unpack_c8.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/generated/unpack_i1.c b/libgfortran/generated/unpack_i1.c index 9f6da8b..90c2b77 100644 --- a/libgfortran/generated/unpack_i1.c +++ b/libgfortran/generated/unpack_i1.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/generated/unpack_i16.c b/libgfortran/generated/unpack_i16.c index d7074b9..d7f75e3 100644 --- a/libgfortran/generated/unpack_i16.c +++ b/libgfortran/generated/unpack_i16.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/generated/unpack_i2.c b/libgfortran/generated/unpack_i2.c index 59cd5c2..d57c8ba 100644 --- a/libgfortran/generated/unpack_i2.c +++ b/libgfortran/generated/unpack_i2.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/generated/unpack_i4.c b/libgfortran/generated/unpack_i4.c index 1383aaa..46204eb 100644 --- a/libgfortran/generated/unpack_i4.c +++ b/libgfortran/generated/unpack_i4.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/generated/unpack_i8.c b/libgfortran/generated/unpack_i8.c index f5aaac0..033ab6b5 100644 --- a/libgfortran/generated/unpack_i8.c +++ b/libgfortran/generated/unpack_i8.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/generated/unpack_r10.c b/libgfortran/generated/unpack_r10.c index 26b4463..27b6d76 100644 --- a/libgfortran/generated/unpack_r10.c +++ b/libgfortran/generated/unpack_r10.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/generated/unpack_r16.c b/libgfortran/generated/unpack_r16.c index 0db015e..94b5024 100644 --- a/libgfortran/generated/unpack_r16.c +++ b/libgfortran/generated/unpack_r16.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/generated/unpack_r4.c b/libgfortran/generated/unpack_r4.c index c262f1a..1a204cb 100644 --- a/libgfortran/generated/unpack_r4.c +++ b/libgfortran/generated/unpack_r4.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/generated/unpack_r8.c b/libgfortran/generated/unpack_r8.c index 933be2c..caa50e9 100644 --- a/libgfortran/generated/unpack_r8.c +++ b/libgfortran/generated/unpack_r8.c @@ -1,5 +1,5 @@ /* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/ieee/ieee_arithmetic.F90 b/libgfortran/ieee/ieee_arithmetic.F90 index bcf129c..bf26d86 100644 --- a/libgfortran/ieee/ieee_arithmetic.F90 +++ b/libgfortran/ieee/ieee_arithmetic.F90 @@ -1,5 +1,5 @@ ! Implementation of the IEEE_ARITHMETIC standard intrinsic module -! Copyright (C) 2013-2017 Free Software Foundation, Inc. +! Copyright (C) 2013-2018 Free Software Foundation, Inc. ! Contributed by Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> ! ! This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/ieee/ieee_exceptions.F90 b/libgfortran/ieee/ieee_exceptions.F90 index 80d5465..707aafc 100644 --- a/libgfortran/ieee/ieee_exceptions.F90 +++ b/libgfortran/ieee/ieee_exceptions.F90 @@ -1,5 +1,5 @@ ! Implementation of the IEEE_EXCEPTIONS standard intrinsic module -! Copyright (C) 2013-2017 Free Software Foundation, Inc. +! Copyright (C) 2013-2018 Free Software Foundation, Inc. ! Contributed by Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> ! ! This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/ieee/ieee_features.F90 b/libgfortran/ieee/ieee_features.F90 index a252c4d..d5aec3b 100644 --- a/libgfortran/ieee/ieee_features.F90 +++ b/libgfortran/ieee/ieee_features.F90 @@ -1,5 +1,5 @@ ! Implementation of the IEEE_FEATURES standard intrinsic module -! Copyright (C) 2013-2017 Free Software Foundation, Inc. +! Copyright (C) 2013-2018 Free Software Foundation, Inc. ! Contributed by Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> ! ! This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/ieee/ieee_helper.c b/libgfortran/ieee/ieee_helper.c index 6567838..5071efa 100644 --- a/libgfortran/ieee/ieee_helper.c +++ b/libgfortran/ieee/ieee_helper.c @@ -1,5 +1,5 @@ /* Helper functions in C for IEEE modules - Copyright (C) 2013-2017 Free Software Foundation, Inc. + Copyright (C) 2013-2018 Free Software Foundation, Inc. Contributed by Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/abort.c b/libgfortran/intrinsics/abort.c index c9ee022..31fb7f2 100644 --- a/libgfortran/intrinsics/abort.c +++ b/libgfortran/intrinsics/abort.c @@ -1,5 +1,5 @@ /* Implementation of the ABORT intrinsic. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/access.c b/libgfortran/intrinsics/access.c index 287f72c..7a10b60b 100644 --- a/libgfortran/intrinsics/access.c +++ b/libgfortran/intrinsics/access.c @@ -1,5 +1,5 @@ /* Implementation of the ACCESS intrinsic. - Copyright (C) 2006-2017 Free Software Foundation, Inc. + Copyright (C) 2006-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/args.c b/libgfortran/intrinsics/args.c index c07181f..b01b0e8f 100644 --- a/libgfortran/intrinsics/args.c +++ b/libgfortran/intrinsics/args.c @@ -1,6 +1,6 @@ /* Implementation of the GETARG and IARGC g77, and corresponding F2003, intrinsics. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Bud Davis and Janne Blomqvist. This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/associated.c b/libgfortran/intrinsics/associated.c index b40ec48..2907818 100644 --- a/libgfortran/intrinsics/associated.c +++ b/libgfortran/intrinsics/associated.c @@ -1,5 +1,5 @@ /* Implementation of the ASSOCIATED intrinsic - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by kejia Zhao (CCRG) <kejia_zh@yahoo.com.cn> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/c99_functions.c b/libgfortran/intrinsics/c99_functions.c index dce0d7a..944c609 100644 --- a/libgfortran/intrinsics/c99_functions.c +++ b/libgfortran/intrinsics/c99_functions.c @@ -1,5 +1,5 @@ /* Implementation of various C99 functions - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/chdir.c b/libgfortran/intrinsics/chdir.c index 57b45ce..3a8e08d 100644 --- a/libgfortran/intrinsics/chdir.c +++ b/libgfortran/intrinsics/chdir.c @@ -1,5 +1,5 @@ /* Implementation of the CHDIR intrinsic. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/chmod.c b/libgfortran/intrinsics/chmod.c index d08418d..d08edc7 100644 --- a/libgfortran/intrinsics/chmod.c +++ b/libgfortran/intrinsics/chmod.c @@ -1,5 +1,5 @@ /* Implementation of the CHMOD intrinsic. - Copyright (C) 2006-2017 Free Software Foundation, Inc. + Copyright (C) 2006-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/clock.c b/libgfortran/intrinsics/clock.c index f50c95e..afd3ba2 100644 --- a/libgfortran/intrinsics/clock.c +++ b/libgfortran/intrinsics/clock.c @@ -1,5 +1,5 @@ /* Implementation of the MCLOCK and MCLOCK8 g77 intrinsics. - Copyright (C) 2006-2017 Free Software Foundation, Inc. + Copyright (C) 2006-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/cpu_time.c b/libgfortran/intrinsics/cpu_time.c index 2f31ea5..2b88e8e 100644 --- a/libgfortran/intrinsics/cpu_time.c +++ b/libgfortran/intrinsics/cpu_time.c @@ -1,5 +1,5 @@ /* Implementation of the CPU_TIME intrinsic. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/cshift0.c b/libgfortran/intrinsics/cshift0.c index 60e9761..8063d86 100644 --- a/libgfortran/intrinsics/cshift0.c +++ b/libgfortran/intrinsics/cshift0.c @@ -1,5 +1,5 @@ /* Generic implementation of the CSHIFT intrinsic - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Feng Wang <wf_cs@yahoo.com> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/ctime.c b/libgfortran/intrinsics/ctime.c index 755a86a..b0382ef 100644 --- a/libgfortran/intrinsics/ctime.c +++ b/libgfortran/intrinsics/ctime.c @@ -1,5 +1,5 @@ /* Implementation of the CTIME and FDATE g77 intrinsics. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/date_and_time.c b/libgfortran/intrinsics/date_and_time.c index 755daa8..7e288ef 100644 --- a/libgfortran/intrinsics/date_and_time.c +++ b/libgfortran/intrinsics/date_and_time.c @@ -1,5 +1,5 @@ /* Implementation of the DATE_AND_TIME intrinsic. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Steven Bosscher. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/dprod_r8.f90 b/libgfortran/intrinsics/dprod_r8.f90 index ba0dd67..2716199 100644 --- a/libgfortran/intrinsics/dprod_r8.f90 +++ b/libgfortran/intrinsics/dprod_r8.f90 @@ -1,4 +1,4 @@ -! Copyright (C) 2003-2017 Free Software Foundation, Inc. +! Copyright (C) 2003-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/dtime.c b/libgfortran/intrinsics/dtime.c index befff1a..9667db6 100644 --- a/libgfortran/intrinsics/dtime.c +++ b/libgfortran/intrinsics/dtime.c @@ -1,5 +1,5 @@ /* Implementation of the dtime intrinsic. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/env.c b/libgfortran/intrinsics/env.c index f8e376e..165f837 100644 --- a/libgfortran/intrinsics/env.c +++ b/libgfortran/intrinsics/env.c @@ -1,6 +1,6 @@ /* Implementation of the GETENV g77, and GET_ENVIRONMENT_VARIABLE F2003, intrinsics. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Janne Blomqvist. This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/eoshift0.c b/libgfortran/intrinsics/eoshift0.c index dd8c81d..6500b1d 100644 --- a/libgfortran/intrinsics/eoshift0.c +++ b/libgfortran/intrinsics/eoshift0.c @@ -1,5 +1,5 @@ /* Generic implementation of the EOSHIFT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/eoshift2.c b/libgfortran/intrinsics/eoshift2.c index ab760f7..64a9c22 100644 --- a/libgfortran/intrinsics/eoshift2.c +++ b/libgfortran/intrinsics/eoshift2.c @@ -1,5 +1,5 @@ /* Generic implementation of the EOSHIFT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/erfc_scaled.c b/libgfortran/intrinsics/erfc_scaled.c index 881033c..a5f456e 100644 --- a/libgfortran/intrinsics/erfc_scaled.c +++ b/libgfortran/intrinsics/erfc_scaled.c @@ -1,5 +1,5 @@ /* Implementation of the ERFC_SCALED intrinsic. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/erfc_scaled_inc.c b/libgfortran/intrinsics/erfc_scaled_inc.c index ee74bbd..f954143 100644 --- a/libgfortran/intrinsics/erfc_scaled_inc.c +++ b/libgfortran/intrinsics/erfc_scaled_inc.c @@ -1,5 +1,5 @@ /* Implementation of the ERFC_SCALED intrinsic, to be included by erfc_scaled.c - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/etime.c b/libgfortran/intrinsics/etime.c index 6932364..5a308ef 100644 --- a/libgfortran/intrinsics/etime.c +++ b/libgfortran/intrinsics/etime.c @@ -1,5 +1,5 @@ /* Implementation of the ETIME intrinsic. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Steven G. Kargl <kargls@comcast.net>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/execute_command_line.c b/libgfortran/intrinsics/execute_command_line.c index 31ab36d..72d431f 100644 --- a/libgfortran/intrinsics/execute_command_line.c +++ b/libgfortran/intrinsics/execute_command_line.c @@ -1,5 +1,5 @@ /* Implementation of the EXECUTE_COMMAND_LINE intrinsic. - Copyright (C) 2009-2017 Free Software Foundation, Inc. + Copyright (C) 2009-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/exit.c b/libgfortran/intrinsics/exit.c index b6e6cb4..f0a8e6b 100644 --- a/libgfortran/intrinsics/exit.c +++ b/libgfortran/intrinsics/exit.c @@ -1,5 +1,5 @@ /* Implementation of the EXIT intrinsic. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Steven G. Kargl <kargls@comcast.net>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/extends_type_of.c b/libgfortran/intrinsics/extends_type_of.c index 8177e0e..b2b8396 100644 --- a/libgfortran/intrinsics/extends_type_of.c +++ b/libgfortran/intrinsics/extends_type_of.c @@ -1,5 +1,5 @@ /* Implementation of the EXTENDS_TYPE_OF intrinsic. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Janus Weil <janus@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/f2c_specifics.F90 b/libgfortran/intrinsics/f2c_specifics.F90 index 5b599e6..865ae5d 100644 --- a/libgfortran/intrinsics/f2c_specifics.F90 +++ b/libgfortran/intrinsics/f2c_specifics.F90 @@ -1,4 +1,4 @@ -! Copyright (C) 2002-2017 Free Software Foundation, Inc. +! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Tobias Schl"uter ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/fnum.c b/libgfortran/intrinsics/fnum.c index e7e2e69..426de4e 100644 --- a/libgfortran/intrinsics/fnum.c +++ b/libgfortran/intrinsics/fnum.c @@ -1,5 +1,5 @@ /* Implementation of the FNUM intrinsics. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Steven G. Kargl <kargls@comcast.net>. This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/gerror.c b/libgfortran/intrinsics/gerror.c index 34ea1df..c414ab8 100644 --- a/libgfortran/intrinsics/gerror.c +++ b/libgfortran/intrinsics/gerror.c @@ -1,5 +1,5 @@ /* Implementation of the GERROR g77 intrinsic. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/getXid.c b/libgfortran/intrinsics/getXid.c index 0ee555c..76c93b9 100644 --- a/libgfortran/intrinsics/getXid.c +++ b/libgfortran/intrinsics/getXid.c @@ -1,5 +1,5 @@ /* Wrapper for the unix get{g,p,u}id functions. -Copyright (C) 2004-2017 Free Software Foundation, Inc. +Copyright (C) 2004-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/getcwd.c b/libgfortran/intrinsics/getcwd.c index a78d508..b00dd82 100644 --- a/libgfortran/intrinsics/getcwd.c +++ b/libgfortran/intrinsics/getcwd.c @@ -1,5 +1,5 @@ /* Implementation of the GETCWD intrinsic. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Steven G. Kargl <kargls@comcast.net>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/getlog.c b/libgfortran/intrinsics/getlog.c index a856cd1..7b8f04b 100644 --- a/libgfortran/intrinsics/getlog.c +++ b/libgfortran/intrinsics/getlog.c @@ -1,5 +1,5 @@ /* Implementation of the GETLOG g77 intrinsic. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/hostnm.c b/libgfortran/intrinsics/hostnm.c index 2ccb5bdb..62560e9 100644 --- a/libgfortran/intrinsics/hostnm.c +++ b/libgfortran/intrinsics/hostnm.c @@ -1,5 +1,5 @@ /* Implementation of the HOSTNM intrinsic. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/ierrno.c b/libgfortran/intrinsics/ierrno.c index f9801c9..4e29a3b 100644 --- a/libgfortran/intrinsics/ierrno.c +++ b/libgfortran/intrinsics/ierrno.c @@ -1,5 +1,5 @@ /* Implementation of the IERRNO intrinsic. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/ishftc.c b/libgfortran/intrinsics/ishftc.c index 149d2fa..a075f38 100644 --- a/libgfortran/intrinsics/ishftc.c +++ b/libgfortran/intrinsics/ishftc.c @@ -1,5 +1,5 @@ /* Implementation of ishftc intrinsic. - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/kill.c b/libgfortran/intrinsics/kill.c index cc9ca0c..113eedb 100644 --- a/libgfortran/intrinsics/kill.c +++ b/libgfortran/intrinsics/kill.c @@ -1,5 +1,5 @@ /* Implementation of the KILL g77 intrinsic. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/link.c b/libgfortran/intrinsics/link.c index 08cbe68..4068e7e 100644 --- a/libgfortran/intrinsics/link.c +++ b/libgfortran/intrinsics/link.c @@ -1,5 +1,5 @@ /* Implementation of the LINK intrinsic. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/move_alloc.c b/libgfortran/intrinsics/move_alloc.c index 08e9dc7..aa93c47 100644 --- a/libgfortran/intrinsics/move_alloc.c +++ b/libgfortran/intrinsics/move_alloc.c @@ -1,5 +1,5 @@ /* Generic implementation of the MOVE_ALLOC intrinsic - Copyright (C) 2006-2017 Free Software Foundation, Inc. + Copyright (C) 2006-2018 Free Software Foundation, Inc. Contributed by Paul Thomas This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/mvbits.c b/libgfortran/intrinsics/mvbits.c index 2de9846..b8058d9 100644 --- a/libgfortran/intrinsics/mvbits.c +++ b/libgfortran/intrinsics/mvbits.c @@ -1,5 +1,5 @@ /* Implementation of the MVBITS intrinsic - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Tobias Schlüter This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/pack_generic.c b/libgfortran/intrinsics/pack_generic.c index 110e211..f4a7da9 100644 --- a/libgfortran/intrinsics/pack_generic.c +++ b/libgfortran/intrinsics/pack_generic.c @@ -1,5 +1,5 @@ /* Generic implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/perror.c b/libgfortran/intrinsics/perror.c index 43321cd..ae2e6cb 100644 --- a/libgfortran/intrinsics/perror.c +++ b/libgfortran/intrinsics/perror.c @@ -1,5 +1,5 @@ /* Implementation of the PERROR intrinsic. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/rand.c b/libgfortran/intrinsics/rand.c index acc928f..31d2b33 100644 --- a/libgfortran/intrinsics/rand.c +++ b/libgfortran/intrinsics/rand.c @@ -1,5 +1,5 @@ /* Implementation of the IRAND, RAND, and SRAND intrinsics. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Steven G. Kargl <kargls@comcast.net>. This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/random.c b/libgfortran/intrinsics/random.c index 2edfa82..797f914 100644 --- a/libgfortran/intrinsics/random.c +++ b/libgfortran/intrinsics/random.c @@ -1,5 +1,5 @@ /* Implementation of the RANDOM intrinsics - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Lars Segerlund <seger@linuxmail.org>, Steve Kargl and Janne Blomqvist. diff --git a/libgfortran/intrinsics/rename.c b/libgfortran/intrinsics/rename.c index 74c0628..8accf65 100644 --- a/libgfortran/intrinsics/rename.c +++ b/libgfortran/intrinsics/rename.c @@ -1,5 +1,5 @@ /* Implementation of the RENAME intrinsic. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/reshape_generic.c b/libgfortran/intrinsics/reshape_generic.c index 09b0c36..a858e29 100644 --- a/libgfortran/intrinsics/reshape_generic.c +++ b/libgfortran/intrinsics/reshape_generic.c @@ -1,5 +1,5 @@ /* Generic implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/reshape_packed.c b/libgfortran/intrinsics/reshape_packed.c index 53031e6..7cfb27b 100644 --- a/libgfortran/intrinsics/reshape_packed.c +++ b/libgfortran/intrinsics/reshape_packed.c @@ -1,5 +1,5 @@ /* Implementation of the RESHAPE intrinsic for packed arrays - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/selected_char_kind.c b/libgfortran/intrinsics/selected_char_kind.c index 8e1d5b4..ddb4d83 100644 --- a/libgfortran/intrinsics/selected_char_kind.c +++ b/libgfortran/intrinsics/selected_char_kind.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2017 Free Software Foundation, Inc. +/* Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/selected_int_kind.f90 b/libgfortran/intrinsics/selected_int_kind.f90 index 418728a..acad4dd 100644 --- a/libgfortran/intrinsics/selected_int_kind.f90 +++ b/libgfortran/intrinsics/selected_int_kind.f90 @@ -1,4 +1,4 @@ -! Copyright (C) 2003-2017 Free Software Foundation, Inc. +! Copyright (C) 2003-2018 Free Software Foundation, Inc. ! Contributed by Kejia Zhao <kejia_zh@yahoo.com.cn> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/selected_real_kind.f90 b/libgfortran/intrinsics/selected_real_kind.f90 index 7548692..1966730 100644 --- a/libgfortran/intrinsics/selected_real_kind.f90 +++ b/libgfortran/intrinsics/selected_real_kind.f90 @@ -1,4 +1,4 @@ -! Copyright (C) 2003-2017 Free Software Foundation, Inc. +! Copyright (C) 2003-2018 Free Software Foundation, Inc. ! Contributed by Kejia Zhao <kejia_zh@yahoo.com.cn> ! !This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/signal.c b/libgfortran/intrinsics/signal.c index cdfa7fb..365630d 100644 --- a/libgfortran/intrinsics/signal.c +++ b/libgfortran/intrinsics/signal.c @@ -1,5 +1,5 @@ /* Implementation of the SIGNAL and ALARM g77 intrinsics - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/size.c b/libgfortran/intrinsics/size.c index a1aae96..9703f10 100644 --- a/libgfortran/intrinsics/size.c +++ b/libgfortran/intrinsics/size.c @@ -1,5 +1,5 @@ /* Implementation of the size intrinsic. - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/sleep.c b/libgfortran/intrinsics/sleep.c index c2f5146..0e7e649 100644 --- a/libgfortran/intrinsics/sleep.c +++ b/libgfortran/intrinsics/sleep.c @@ -1,5 +1,5 @@ /* Implementation of the SLEEP intrinsic. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/intrinsics/spread_generic.c b/libgfortran/intrinsics/spread_generic.c index a5551f0..0f28e35 100644 --- a/libgfortran/intrinsics/spread_generic.c +++ b/libgfortran/intrinsics/spread_generic.c @@ -1,5 +1,5 @@ /* Generic implementation of the SPREAD intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/stat.c b/libgfortran/intrinsics/stat.c index 6391c13..d4c39c5 100644 --- a/libgfortran/intrinsics/stat.c +++ b/libgfortran/intrinsics/stat.c @@ -1,5 +1,5 @@ /* Implementation of the STAT and FSTAT intrinsics. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Steven G. Kargl <kargls@comcast.net>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/string_intrinsics.c b/libgfortran/intrinsics/string_intrinsics.c index 5f847e9..a21c5d0 100644 --- a/libgfortran/intrinsics/string_intrinsics.c +++ b/libgfortran/intrinsics/string_intrinsics.c @@ -1,5 +1,5 @@ /* String intrinsics helper functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/string_intrinsics_inc.c b/libgfortran/intrinsics/string_intrinsics_inc.c index f514f4c..350642d 100644 --- a/libgfortran/intrinsics/string_intrinsics_inc.c +++ b/libgfortran/intrinsics/string_intrinsics_inc.c @@ -1,5 +1,5 @@ /* String intrinsics helper functions. - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/symlnk.c b/libgfortran/intrinsics/symlnk.c index eca0b6e..4586121 100644 --- a/libgfortran/intrinsics/symlnk.c +++ b/libgfortran/intrinsics/symlnk.c @@ -1,5 +1,5 @@ /* Implementation of the SYMLNK intrinsic. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/system.c b/libgfortran/intrinsics/system.c index 8fcb7e7..ed96812 100644 --- a/libgfortran/intrinsics/system.c +++ b/libgfortran/intrinsics/system.c @@ -1,5 +1,5 @@ /* Implementation of the SYSTEM intrinsic. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Tobias Schlüter. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/system_clock.c b/libgfortran/intrinsics/system_clock.c index 5674d49..e7afbd6 100644 --- a/libgfortran/intrinsics/system_clock.c +++ b/libgfortran/intrinsics/system_clock.c @@ -1,5 +1,5 @@ /* Implementation of the SYSTEM_CLOCK intrinsic. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/time.c b/libgfortran/intrinsics/time.c index 58d556a..273e746 100644 --- a/libgfortran/intrinsics/time.c +++ b/libgfortran/intrinsics/time.c @@ -1,5 +1,5 @@ /* Implementation of the TIME and TIME8 g77 intrinsics. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/time_1.h b/libgfortran/intrinsics/time_1.h index 95177dc..b095a87 100644 --- a/libgfortran/intrinsics/time_1.h +++ b/libgfortran/intrinsics/time_1.h @@ -1,5 +1,5 @@ /* Wrappers for platform timing functions. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/umask.c b/libgfortran/intrinsics/umask.c index 4fb6d7f..84fa680 100644 --- a/libgfortran/intrinsics/umask.c +++ b/libgfortran/intrinsics/umask.c @@ -1,5 +1,5 @@ /* Implementation of the UMASK intrinsic. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Steven G. Kargl <kargls@comcast.net>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/unlink.c b/libgfortran/intrinsics/unlink.c index b38bfd8..e24abfe 100644 --- a/libgfortran/intrinsics/unlink.c +++ b/libgfortran/intrinsics/unlink.c @@ -1,5 +1,5 @@ /* Implementation of the UNLINK intrinsic. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Steven G. Kargl <kargls@comcast.net>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/intrinsics/unpack_generic.c b/libgfortran/intrinsics/unpack_generic.c index 0ab59a6..2dfa2d6 100644 --- a/libgfortran/intrinsics/unpack_generic.c +++ b/libgfortran/intrinsics/unpack_generic.c @@ -1,5 +1,5 @@ /* Generic implementation of the UNPACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/io/close.c b/libgfortran/io/close.c index e40fd92..2117c40 100644 --- a/libgfortran/io/close.c +++ b/libgfortran/io/close.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/io/fbuf.c b/libgfortran/io/fbuf.c index 944469d..aa463f1 100644 --- a/libgfortran/io/fbuf.c +++ b/libgfortran/io/fbuf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2017 Free Software Foundation, Inc. +/* Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Janne Blomqvist This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/io/fbuf.h b/libgfortran/io/fbuf.h index a0c5713..8dd94db 100644 --- a/libgfortran/io/fbuf.h +++ b/libgfortran/io/fbuf.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2017 Free Software Foundation, Inc. +/* Copyright (C) 2009-2018 Free Software Foundation, Inc. Contributed by Janne Blomqvist This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/io/file_pos.c b/libgfortran/io/file_pos.c index 771d548..75f58f0 100644 --- a/libgfortran/io/file_pos.c +++ b/libgfortran/io/file_pos.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught and Janne Blomqvist This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/io/format.c b/libgfortran/io/format.c index c2abdd7..b718faa 100644 --- a/libgfortran/io/format.c +++ b/libgfortran/io/format.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught F2003 I/O support contributed by Jerry DeLisle diff --git a/libgfortran/io/format.h b/libgfortran/io/format.h index 6f9545b..ad7e1c1 100644 --- a/libgfortran/io/format.h +++ b/libgfortran/io/format.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2017 Free Software Foundation, Inc. +/* Copyright (C) 2009-2018 Free Software Foundation, Inc. Contributed by Janne Blomqvist This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/io/inquire.c b/libgfortran/io/inquire.c index 6ba1224..047be39 100644 --- a/libgfortran/io/inquire.c +++ b/libgfortran/io/inquire.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/io/intrinsics.c b/libgfortran/io/intrinsics.c index adf489c..032ae2d 100644 --- a/libgfortran/io/intrinsics.c +++ b/libgfortran/io/intrinsics.c @@ -1,6 +1,6 @@ /* Implementation of the FGET, FGETC, FPUT, FPUTC, FLUSH FTELL, TTYNAM and ISATTY intrinsics. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/io/io.h b/libgfortran/io/io.h index c5e73d8..b32fcd3 100644 --- a/libgfortran/io/io.h +++ b/libgfortran/io/io.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught F2003 I/O support contributed by Jerry DeLisle diff --git a/libgfortran/io/list_read.c b/libgfortran/io/list_read.c index 037f2da..62c215c 100644 --- a/libgfortran/io/list_read.c +++ b/libgfortran/io/list_read.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught Namelist input contributed by Paul Thomas F2003 I/O support contributed by Jerry DeLisle diff --git a/libgfortran/io/lock.c b/libgfortran/io/lock.c index 8df7e7b..3815044 100644 --- a/libgfortran/io/lock.c +++ b/libgfortran/io/lock.c @@ -1,5 +1,5 @@ /* Thread/recursion locking - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> and Andy Vaught This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/io/open.c b/libgfortran/io/open.c index 05e1773..05aac8f 100644 --- a/libgfortran/io/open.c +++ b/libgfortran/io/open.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught F2003 I/O support contributed by Jerry DeLisle diff --git a/libgfortran/io/read.c b/libgfortran/io/read.c index 9eb2196..167587f 100644 --- a/libgfortran/io/read.c +++ b/libgfortran/io/read.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught F2003 I/O support contributed by Jerry DeLisle diff --git a/libgfortran/io/size_from_kind.c b/libgfortran/io/size_from_kind.c index 08f4bba..bcbb988 100644 --- a/libgfortran/io/size_from_kind.c +++ b/libgfortran/io/size_from_kind.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2017 Free Software Foundation, Inc. +/* Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by Janne Blomqvist This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/io/transfer.c b/libgfortran/io/transfer.c index 211dc34..c643168 100644 --- a/libgfortran/io/transfer.c +++ b/libgfortran/io/transfer.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught Namelist transfer functions contributed by Paul Thomas F2003 I/O support contributed by Jerry DeLisle diff --git a/libgfortran/io/transfer128.c b/libgfortran/io/transfer128.c index f1758a8..c3c6476 100644 --- a/libgfortran/io/transfer128.c +++ b/libgfortran/io/transfer128.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2017 Free Software Foundation, Inc. +/* Copyright (C) 2010-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/io/unit.c b/libgfortran/io/unit.c index a655665..0b62ad9 100644 --- a/libgfortran/io/unit.c +++ b/libgfortran/io/unit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught F2003 I/O support contributed by Jerry DeLisle diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c index 7a982b3..822d34f 100644 --- a/libgfortran/io/unix.c +++ b/libgfortran/io/unix.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught F2003 I/O support contributed by Jerry DeLisle diff --git a/libgfortran/io/unix.h b/libgfortran/io/unix.h index 4ac92ee..8d12631 100644 --- a/libgfortran/io/unix.h +++ b/libgfortran/io/unix.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2017 Free Software Foundation, Inc. +/* Copyright (C) 2009-2018 Free Software Foundation, Inc. Contributed by Janne Blomqvist This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/io/write.c b/libgfortran/io/write.c index 19e53eb..bd2fb16 100644 --- a/libgfortran/io/write.c +++ b/libgfortran/io/write.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught Namelist output contributed by Paul Thomas F2003 I/O support contributed by Jerry DeLisle diff --git a/libgfortran/io/write_float.def b/libgfortran/io/write_float.def index 7f0aa1d..177a568 100644 --- a/libgfortran/io/write_float.def +++ b/libgfortran/io/write_float.def @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2017 Free Software Foundation, Inc. +/* Copyright (C) 2007-2018 Free Software Foundation, Inc. Contributed by Andy Vaught Write float code factoring to this file by Jerry DeLisle F2003 I/O support contributed by Jerry DeLisle diff --git a/libgfortran/kinds-override.h b/libgfortran/kinds-override.h index 2bc9b22..555fd5e 100644 --- a/libgfortran/kinds-override.h +++ b/libgfortran/kinds-override.h @@ -1,5 +1,5 @@ /* Header used to override things detected by the mk-kinds-h.sh script. - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h index 94aedc8..6243a35 100644 --- a/libgfortran/libgfortran.h +++ b/libgfortran/libgfortran.h @@ -1,5 +1,5 @@ /* Common declarations for all of libgfortran. - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org>, and Andy Vaught <andy@xena.eas.asu.edu> diff --git a/libgfortran/m4/all.m4 b/libgfortran/m4/all.m4 index 49ca252..5c1f42f 100644 --- a/libgfortran/m4/all.m4 +++ b/libgfortran/m4/all.m4 @@ -1,5 +1,5 @@ `/* Implementation of the ALL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/any.m4 b/libgfortran/m4/any.m4 index 065c5c6..5093568 100644 --- a/libgfortran/m4/any.m4 +++ b/libgfortran/m4/any.m4 @@ -1,5 +1,5 @@ `/* Implementation of the ANY intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/bessel.m4 b/libgfortran/m4/bessel.m4 index ca3f8c7..69657ad 100644 --- a/libgfortran/m4/bessel.m4 +++ b/libgfortran/m4/bessel.m4 @@ -1,6 +1,6 @@ `/* Implementation of the BESSEL_JN and BESSEL_YN transformational function using a recurrence algorithm. - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/count.m4 b/libgfortran/m4/count.m4 index 4bf30f0..bb9ce75 100644 --- a/libgfortran/m4/count.m4 +++ b/libgfortran/m4/count.m4 @@ -1,5 +1,5 @@ `/* Implementation of the COUNT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/cshift0.m4 b/libgfortran/m4/cshift0.m4 index 04459d7..9fe3ebf 100644 --- a/libgfortran/m4/cshift0.m4 +++ b/libgfortran/m4/cshift0.m4 @@ -1,5 +1,5 @@ `/* Helper function for cshift functions. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/cshift1.m4 b/libgfortran/m4/cshift1.m4 index 07e8580..6c53a48 100644 --- a/libgfortran/m4/cshift1.m4 +++ b/libgfortran/m4/cshift1.m4 @@ -1,5 +1,5 @@ `/* Implementation of the CSHIFT intrinsic - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Feng Wang <wf_cs@yahoo.com> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/cshift1a.m4 b/libgfortran/m4/cshift1a.m4 index 63d2104..7d4fadd 100644 --- a/libgfortran/m4/cshift1a.m4 +++ b/libgfortran/m4/cshift1a.m4 @@ -1,5 +1,5 @@ `/* Implementation of the CSHIFT intrinsic. - Copyright (C) 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/m4/eoshift1.m4 b/libgfortran/m4/eoshift1.m4 index 6950460..de15142 100644 --- a/libgfortran/m4/eoshift1.m4 +++ b/libgfortran/m4/eoshift1.m4 @@ -1,5 +1,5 @@ `/* Implementation of the EOSHIFT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/eoshift3.m4 b/libgfortran/m4/eoshift3.m4 index 9e7f787..e3ac06a 100644 --- a/libgfortran/m4/eoshift3.m4 +++ b/libgfortran/m4/eoshift3.m4 @@ -1,5 +1,5 @@ `/* Implementation of the EOSHIFT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/head.m4 b/libgfortran/m4/head.m4 index 3562bff..3473466 100644 --- a/libgfortran/m4/head.m4 +++ b/libgfortran/m4/head.m4 @@ -1,4 +1,4 @@ -`! Copyright (C) 2002-2017 Free Software Foundation, Inc. +`! Copyright (C) 2002-2018 Free Software Foundation, Inc. ! Contributed by Paul Brook <paul@nowt.org> ! !This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/m4/iall.m4 b/libgfortran/m4/iall.m4 index 0725b68..89bcc73 100644 --- a/libgfortran/m4/iall.m4 +++ b/libgfortran/m4/iall.m4 @@ -1,5 +1,5 @@ `/* Implementation of the IALL intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/iany.m4 b/libgfortran/m4/iany.m4 index 38b2e24..8032bb5 100644 --- a/libgfortran/m4/iany.m4 +++ b/libgfortran/m4/iany.m4 @@ -1,5 +1,5 @@ `/* Implementation of the IANY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/in_pack.m4 b/libgfortran/m4/in_pack.m4 index 43370ea..5da0a87 100644 --- a/libgfortran/m4/in_pack.m4 +++ b/libgfortran/m4/in_pack.m4 @@ -1,5 +1,5 @@ `/* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/in_unpack.m4 b/libgfortran/m4/in_unpack.m4 index f906713..776bbbf 100644 --- a/libgfortran/m4/in_unpack.m4 +++ b/libgfortran/m4/in_unpack.m4 @@ -1,5 +1,5 @@ `/* Helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/iparity.m4 b/libgfortran/m4/iparity.m4 index db87da5..ea72aed 100644 --- a/libgfortran/m4/iparity.m4 +++ b/libgfortran/m4/iparity.m4 @@ -1,5 +1,5 @@ `/* Implementation of the IPARITY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/matmul.m4 b/libgfortran/m4/matmul.m4 index c2f6415..a685dd9 100644 --- a/libgfortran/m4/matmul.m4 +++ b/libgfortran/m4/matmul.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/matmulavx128.m4 b/libgfortran/m4/matmulavx128.m4 index 1417284..0f6f8a4 100644 --- a/libgfortran/m4/matmulavx128.m4 +++ b/libgfortran/m4/matmulavx128.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/matmull.m4 b/libgfortran/m4/matmull.m4 index ea4eeec..2629e90 100644 --- a/libgfortran/m4/matmull.m4 +++ b/libgfortran/m4/matmull.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MATMUL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/maxloc0.m4 b/libgfortran/m4/maxloc0.m4 index e98cb14..05e50e9 100644 --- a/libgfortran/m4/maxloc0.m4 +++ b/libgfortran/m4/maxloc0.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/m4/maxloc0s.m4 b/libgfortran/m4/maxloc0s.m4 index 96935dc..95bba3c 100644 --- a/libgfortran/m4/maxloc0s.m4 +++ b/libgfortran/m4/maxloc0s.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/maxloc1.m4 b/libgfortran/m4/maxloc1.m4 index 61f35d2..37e0772 100644 --- a/libgfortran/m4/maxloc1.m4 +++ b/libgfortran/m4/maxloc1.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MAXLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/maxloc1s.m4 b/libgfortran/m4/maxloc1s.m4 index dbb69b4..31b5444 100644 --- a/libgfortran/m4/maxloc1s.m4 +++ b/libgfortran/m4/maxloc1s.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/maxloc2s.m4 b/libgfortran/m4/maxloc2s.m4 index f2a061c..4af5eeb 100644 --- a/libgfortran/m4/maxloc2s.m4 +++ b/libgfortran/m4/maxloc2s.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/maxval.m4 b/libgfortran/m4/maxval.m4 index ba6f594..7761d2d 100644 --- a/libgfortran/m4/maxval.m4 +++ b/libgfortran/m4/maxval.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MAXVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/maxval0s.m4 b/libgfortran/m4/maxval0s.m4 index eeb4d7b..b6c8bc0 100644 --- a/libgfortran/m4/maxval0s.m4 +++ b/libgfortran/m4/maxval0s.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/maxval1s.m4 b/libgfortran/m4/maxval1s.m4 index edf0ef1..f6621b9 100644 --- a/libgfortran/m4/maxval1s.m4 +++ b/libgfortran/m4/maxval1s.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MAXVAL intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/minloc0.m4 b/libgfortran/m4/minloc0.m4 index 90090dc..e40821e 100644 --- a/libgfortran/m4/minloc0.m4 +++ b/libgfortran/m4/minloc0.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/m4/minloc0s.m4 b/libgfortran/m4/minloc0s.m4 index b907be3..3b3fcf5 100644 --- a/libgfortran/m4/minloc0s.m4 +++ b/libgfortran/m4/minloc0s.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/minloc1.m4 b/libgfortran/m4/minloc1.m4 index 9e03749..fafa1a9 100644 --- a/libgfortran/m4/minloc1.m4 +++ b/libgfortran/m4/minloc1.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MINLOC intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/minloc1s.m4 b/libgfortran/m4/minloc1s.m4 index d64935a..f2dc8c3 100644 --- a/libgfortran/m4/minloc1s.m4 +++ b/libgfortran/m4/minloc1s.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/minloc2s.m4 b/libgfortran/m4/minloc2s.m4 index b9a7fb6..c485567 100644 --- a/libgfortran/m4/minloc2s.m4 +++ b/libgfortran/m4/minloc2s.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MINLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/minval.m4 b/libgfortran/m4/minval.m4 index c273609..ba34c98 100644 --- a/libgfortran/m4/minval.m4 +++ b/libgfortran/m4/minval.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MINVAL intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/minval0s.m4 b/libgfortran/m4/minval0s.m4 index 0bcf543..6f4db75 100644 --- a/libgfortran/m4/minval0s.m4 +++ b/libgfortran/m4/minval0s.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MAXLOC intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/minval1s.m4 b/libgfortran/m4/minval1s.m4 index 3f52bd9..e4cbd43 100644 --- a/libgfortran/m4/minval1s.m4 +++ b/libgfortran/m4/minval1s.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MAXVAL intrinsic - Copyright 2017 Free Software Foundation, Inc. + Copyright (C) 2017-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/norm2.m4 b/libgfortran/m4/norm2.m4 index 4c4025a..95bdc42 100644 --- a/libgfortran/m4/norm2.m4 +++ b/libgfortran/m4/norm2.m4 @@ -1,5 +1,5 @@ `/* Implementation of the NORM2 intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/pack.m4 b/libgfortran/m4/pack.m4 index 27bc161..beee2e74 100644 --- a/libgfortran/m4/pack.m4 +++ b/libgfortran/m4/pack.m4 @@ -1,5 +1,5 @@ `/* Specific implementation of the PACK intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/parity.m4 b/libgfortran/m4/parity.m4 index 40906e6..c74ec6a 100644 --- a/libgfortran/m4/parity.m4 +++ b/libgfortran/m4/parity.m4 @@ -1,5 +1,5 @@ `/* Implementation of the PARITY intrinsic - Copyright (C) 2010-2017 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Contributed by Tobias Burnus <burnus@net-b.de> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/pow.m4 b/libgfortran/m4/pow.m4 index 0d85241..546ad26 100644 --- a/libgfortran/m4/pow.m4 +++ b/libgfortran/m4/pow.m4 @@ -1,5 +1,5 @@ `/* Support routines for the intrinsic power (**) operator. - Copyright (C) 2004-2017 Free Software Foundation, Inc. + Copyright (C) 2004-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/m4/product.m4 b/libgfortran/m4/product.m4 index d259eb9..f4c09ad 100644 --- a/libgfortran/m4/product.m4 +++ b/libgfortran/m4/product.m4 @@ -1,5 +1,5 @@ `/* Implementation of the PRODUCT intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/reshape.m4 b/libgfortran/m4/reshape.m4 index 346d538..67ad094 100644 --- a/libgfortran/m4/reshape.m4 +++ b/libgfortran/m4/reshape.m4 @@ -1,5 +1,5 @@ `/* Implementation of the RESHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/shape.m4 b/libgfortran/m4/shape.m4 index f663b4d..c355ca1 100644 --- a/libgfortran/m4/shape.m4 +++ b/libgfortran/m4/shape.m4 @@ -1,5 +1,5 @@ `/* Implementation of the SHAPE intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/m4/spread.m4 b/libgfortran/m4/spread.m4 index 7ec2430..c4ac6e2 100644 --- a/libgfortran/m4/spread.m4 +++ b/libgfortran/m4/spread.m4 @@ -1,5 +1,5 @@ `/* Special implementation of the SPREAD intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on spread_generic.c written by Paul Brook <paul@nowt.org> diff --git a/libgfortran/m4/sum.m4 b/libgfortran/m4/sum.m4 index 2a3eac1..95d250f 100644 --- a/libgfortran/m4/sum.m4 +++ b/libgfortran/m4/sum.m4 @@ -1,5 +1,5 @@ `/* Implementation of the SUM intrinsic - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). diff --git a/libgfortran/m4/unpack.m4 b/libgfortran/m4/unpack.m4 index e58ff3e..7100a2b 100644 --- a/libgfortran/m4/unpack.m4 +++ b/libgfortran/m4/unpack.m4 @@ -1,5 +1,5 @@ `/* Specific implementation of the UNPACK intrinsic - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>, based on unpack_generic.c by Paul Brook <paul@nowt.org>. diff --git a/libgfortran/runtime/backtrace.c b/libgfortran/runtime/backtrace.c index 77dd4d5..b824688 100644 --- a/libgfortran/runtime/backtrace.c +++ b/libgfortran/runtime/backtrace.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2017 Free Software Foundation, Inc. +/* Copyright (C) 2006-2018 Free Software Foundation, Inc. Contributed by François-Xavier Coudert This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/bounds.c b/libgfortran/runtime/bounds.c index 376b9d7..b749db1 100644 --- a/libgfortran/runtime/bounds.c +++ b/libgfortran/runtime/bounds.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2017 Free Software Foundation, Inc. +/* Copyright (C) 2009-2018 Free Software Foundation, Inc. Contributed by Thomas Koenig This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/compile_options.c b/libgfortran/runtime/compile_options.c index b572c88..1d37e77 100644 --- a/libgfortran/runtime/compile_options.c +++ b/libgfortran/runtime/compile_options.c @@ -1,5 +1,5 @@ /* Handling of compile-time options that influence the library. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/convert_char.c b/libgfortran/runtime/convert_char.c index 8e228f2..846fcd6 100644 --- a/libgfortran/runtime/convert_char.c +++ b/libgfortran/runtime/convert_char.c @@ -1,5 +1,5 @@ /* Runtime conversion of strings from one character kind to another. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/environ.c b/libgfortran/runtime/environ.c index fb9a3c1..22faad3 100644 --- a/libgfortran/runtime/environ.c +++ b/libgfortran/runtime/environ.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/error.c b/libgfortran/runtime/error.c index d2f879e..1a53e2f 100644 --- a/libgfortran/runtime/error.c +++ b/libgfortran/runtime/error.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/fpu.c b/libgfortran/runtime/fpu.c index b00316f..aeb9099 100644 --- a/libgfortran/runtime/fpu.c +++ b/libgfortran/runtime/fpu.c @@ -1,5 +1,5 @@ /* Set FPU mask. - Copyright (C) 2005-2017 Free Software Foundation, Inc. + Copyright (C) 2005-2018 Free Software Foundation, Inc. Contributed by Francois-Xavier Coudert <coudert@clipper.ens.fr> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/in_pack_generic.c b/libgfortran/runtime/in_pack_generic.c index c4b78e9..dcc0db9 100644 --- a/libgfortran/runtime/in_pack_generic.c +++ b/libgfortran/runtime/in_pack_generic.c @@ -1,5 +1,5 @@ /* Generic helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/in_unpack_generic.c b/libgfortran/runtime/in_unpack_generic.c index 46b6ddd..14231e5 100644 --- a/libgfortran/runtime/in_unpack_generic.c +++ b/libgfortran/runtime/in_unpack_generic.c @@ -1,5 +1,5 @@ /* Generic helper function for repacking arrays. - Copyright (C) 2003-2017 Free Software Foundation, Inc. + Copyright (C) 2003-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/main.c b/libgfortran/runtime/main.c index 2096271..f434e5b 100644 --- a/libgfortran/runtime/main.c +++ b/libgfortran/runtime/main.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught and Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/memory.c b/libgfortran/runtime/memory.c index 98c59bb..a599456 100644 --- a/libgfortran/runtime/memory.c +++ b/libgfortran/runtime/memory.c @@ -1,5 +1,5 @@ /* Memory management routines. - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/minimal.c b/libgfortran/runtime/minimal.c index 3c7eca1..4201175 100644 --- a/libgfortran/runtime/minimal.c +++ b/libgfortran/runtime/minimal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Andy Vaught and Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/pause.c b/libgfortran/runtime/pause.c index 990d76f..25690d8 100644 --- a/libgfortran/runtime/pause.c +++ b/libgfortran/runtime/pause.c @@ -1,5 +1,5 @@ /* Implementation of the PAUSE statement. - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/select.c b/libgfortran/runtime/select.c index 6b42151..14c7230 100644 --- a/libgfortran/runtime/select.c +++ b/libgfortran/runtime/select.c @@ -1,5 +1,5 @@ /* Implement the SELECT statement for character variables. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/select_inc.c b/libgfortran/runtime/select_inc.c index 0a0880b..c2a3584 100644 --- a/libgfortran/runtime/select_inc.c +++ b/libgfortran/runtime/select_inc.c @@ -1,5 +1,5 @@ /* Implement the SELECT statement for character variables. - Copyright (C) 2008-2017 Free Software Foundation, Inc. + Copyright (C) 2008-2018 Free Software Foundation, Inc. This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/stop.c b/libgfortran/runtime/stop.c index 81f00d7..6f8b62f 100644 --- a/libgfortran/runtime/stop.c +++ b/libgfortran/runtime/stop.c @@ -1,5 +1,5 @@ /* Implementation of the STOP statement. - Copyright (C) 2002-2017 Free Software Foundation, Inc. + Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran runtime library (libgfortran). diff --git a/libgfortran/runtime/string.c b/libgfortran/runtime/string.c index 332b42e..f1ca40e 100644 --- a/libgfortran/runtime/string.c +++ b/libgfortran/runtime/string.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2017 Free Software Foundation, Inc. +/* Copyright (C) 2002-2018 Free Software Foundation, Inc. Contributed by Paul Brook This file is part of the GNU Fortran runtime library (libgfortran). |