Messages by Thread
-
package not available for download
Campbell, Glenn J. [US-US]
-
[PATCH] PR 125324 Fix - -fcoarray=shared should imply -pthread / gfortran.dg/coarray_51.f90 FAIL
Jerry D
-
[PATCH] PR125430 Fixmodule-contained PRIVATE procedures must have global, ELF linkage
Jerry D
-
[PATCH 1/2] Fortran: Add c_f_strpointer intrinsic
Sandra Loosemore
-
[PATCH] PR93727 Add EX format rounding for truncated hex mantissa
Jerry D
-
gcc
Andrea Lyone
-
[Patch] Fortran: invoke.texi - document -fcoarray=shared [PR125416]
Tobias Burnus
-
[patch, fortran] Fix PR 125379, ICE with BIND(C) and PRIVATE
Thomas Koenig
-
[patch, Fortran] Fix PR 106546, inline matmul with -fno-automatic
Thomas Koenig
-
[PATCH 0/1] fortran: opt-in non-traditional C preprocessing
Henri Menke
-
[Patch] OpenMP: Fortran "!$omp declare mapper" parser support
Tobias Burnus
-
[patch, fortran] Fix PR 115260, data corruption on inline packing / unpacking
Thomas Koenig
-
[PATCH v3] OpenMP 5.0: Allow multiple clauses mapping same variable
Paul-Antoine Arras
-
[Patch, fortran] PR125263 - [14/15/16/17 Regression] Error with intrinsic assignment involving allocatable array of user-defined type that has an allocatable array component
Paul Richard Thomas
-
[patch, fortran] PR 122245: Fix -fc-prototypes when procedure is defined via INTERFACE
Thomas Koenig
-
PR125311: gfortran, d, or driver issue?
Harald Anlauf
-
[PATCH] libgfortran: Fix libcaf_shmem build on Solaris
Rainer Orth
-
[PATCH] build: Fix ax_pthread.m4 on Solaris 11.4
Rainer Orth
-
[PATCH v2] OpenMP 5.0: Allow multiple clauses mapping same variable
Paul-Antoine Arras
-
PR fortran/125092 -checks for binding label argument mismatch
Thomas Koenig
-
[PATCH, OpenMP, Fortran] PR122910 fix POINTER array mis-privatization
Chung-Lin Tang
-
[Patch] OpenMP: Improve interface comment for the omp_deep_mapping lang hooks
Tobias Burnus
-
Redux: [Bug fortran/125051] [coarray] undefined reference to `__caf_get_from_remote_fn_index_0.4' (shmem caf)
Paul Richard Thomas
-
[Patch] libgomp: Add stub omp_control_tool for OMPT
Tobias Burnus
-
[PATCH, fortran] PR93727 Implement new EX format specifier
Jerry D
-
Re: [PATCH, fortran] PR93727 Implement new EX format specifier
Harald Anlauf
-
Re: [PATCH, fortran] PR93727 Implement new EX format specifier
Jerry Delisle
-
Re: [PATCH, fortran] PR93727 Implement new EX format specifier
Jerry D
-
Re: [PATCH, fortran] PR93727 Implement new EX format specifier
Harald Anlauf
-
Re: [PATCH, fortran] PR93727 Implement new EX format specifier
Jerry D
-
Re: [PATCH, fortran] PR93727 Implement new EX format specifier
H.J. Lu
-
Re: [PATCH, fortran] PR93727 Implement new EX format specifier
Jerry Delisle
-
Re: [PATCH, fortran] PR93727 Implement new EX format specifier
Jerry D
-
Re: [PATCH, fortran] PR93727 Implement new EX format specifier
Thomas Koenig
-
Re: [PATCH, fortran] PR93727 Implement new EX format specifier
Jerry D
-
Re: [PATCH, fortran] PR93727 Implement new EX format specifier
Jerry D
-
Re: [PATCH, fortran] PR93727 Implement new EX format specifier
H.J. Lu
-
[PATCH. fortran] Add automatic linking to caf_shmem using -fcoarray=shared
Jerry D
-
[PATCH, committed] libfortran: fix static analyser cppcheck warning in free_format_data [PR125087]
Harald Anlauf
-
[PATCH] Fortran: fix automatic deallocation with derived type IO [PR111952,PR125059]
Harald Anlauf
-
[Patch, fortran] PR125051 - [coarray] undefined reference to `__caf_get_from_remote_fn_index_0.4' (shmem caf)
Paul Richard Thomas
-
[PATCH 0/2] fortran: Add bound checking code to the scalarizer block [PR125192]
Mikael Morin
-
[PATCH v3] fortran: refresh associate-name kind once selector is resolved [PR125172]
Samir Ouchene
-
[PATCH] Fortran: Add debug functions for OpenMP data structures
Paul-Antoine Arras
-
[PATCH v2] fortran: refresh associate-name kind once selector is resolved [PR125172] When the ASSOCIATE target is a forward reference to an internal or contained function whose return type is not yet known at parse time, primary.cc infers a type for the associate-name from a %re/%im/%len inquiry using the default kind (e.g. complex(4) when the user wrote k%re). The actual selector kind cannot be known at that point. The inferred-type cleanup in resolve_assoc_var only refreshed the typespec when the target was BT_DERIVED/BT_CLASS, so for an inferred intrinsic complex/character associate-name sym->ts kept the default kind. Resolved expressions referencing the associate-name (or applying the %re/%im inquiry) inherited that wrong kind, so for a function returning complex(real64) one would see kind(k%re) == 4. Refresh the kind in three places once the selector's actual type is known: - resolve_assoc_var: when the associate-name was inferred and the target's resolved intrinsic type matches sym->ts.type but not its kind, copy the target's typespec onto sym. - resolve_variable: for a no-ref reference to an inferred-type associate-name whose ts has changed at resolution, update e->ts from sym->ts so callers like aimag(k) see the correct kind. - gfc_fixup_inferred_type_refs: for an INQUIRY_RE/INQUIRY_IM ref on a BT_COMPLEX associate-name, set e->ts.kind to sym->ts.kind so kind(k%re) reflects the resolved kind. PR fortran/125172 gcc/fortran/ChangeLog: * resolve.cc (gfc_fixup_inferred_type_refs): Update kind for INQUIRY_RE and INQUIRY_IM references on inferred complex associate-name. (resolve_variable): For an inferred-type associate-name with no subobject ref, refresh e->ts from sym->ts. (resolve_assoc_var): For an inferred-type complex/character associate-name, refresh sym->ts from the resolved target when only the kind differs. gcc/testsuite/ChangeLog: * gfortran.dg/associate_79.f90: New test.
Samir Ouchene
-
[PATCH] fortran: refresh associate-name kind once selector is resolved [PR125172] When the ASSOCIATE target is a forward reference to an internal or contained function whose return type is not yet known at parse time, primary.cc infers a type for the associate-name from a %re/%im/%len inquiry using the default kind (e.g. complex(4) when the user wrote k%re). The actual selector kind cannot be known at that point. The inferred-type cleanup in resolve_assoc_var only refreshed the typespec when the target was BT_DERIVED/BT_CLASS, so for an inferred intrinsic complex/character associate-name sym->ts kept the default kind. Resolved expressions referencing the associate-name (or applying the %re/%im inquiry) inherited that wrong kind, so for a function returning complex(real64) one would see kind(k%re) == 4. Refresh the kind in three places once the selector's actual type is known: - resolve_assoc_var: when the associate-name was inferred and the target's resolved intrinsic type matches sym->ts.type but not its kind, copy the target's typespec onto sym. - resolve_variable: for a no-ref reference to an inferred-type associate-name whose ts has changed at resolution, update e->ts from sym->ts so callers like aimag(k) see the correct kind. - gfc_fixup_inferred_type_refs: for an INQUIRY_RE/INQUIRY_IM ref on a BT_COMPLEX associate-name, set e->ts.kind to sym->ts.kind so kind(k%re) reflects the resolved kind. PR fortran/125172 gcc/fortran/ChangeLog: * resolve.cc (gfc_fixup_inferred_type_refs): Update kind for INQUIRY_RE and INQUIRY_IM references on inferred complex associate-name. (resolve_variable): For an inferred-type associate-name with no subobject ref, refresh e->ts from sym->ts. (resolve_assoc_var): For an inferred-type complex/character associate-name, refresh sym->ts from the resolved target when only the kind differs. gcc/testsuite/ChangeLog: * gfortran.dg/associate_79.f90: New test.
Samir Ouchene
-
Possible gfortran bug: wrong kind for associate name of internal complex function result
s.ouchene
-
[PATCH] Fortran: fix namelist read for input with comments [PR125095]
Harald Anlauf
-
[committed] Fortran/OpenMP: cleanup gfc_free_omp_namelist
Tobias Burnus
-
[PATCH 1/2] libgfortran: Use MapViewOfFileEx instead of MapViewOfFileExNuma in caf_shmem
Peter Damianov
-
In Memoriam: Tomáš Kalibera
Janne Blomqvist
-
[Fortran, Patch, PR125021] Fix symbol confusion
Andre Vehreschild
-
[committed] libgomp.fortran/map-subarray-6.f90: Fix and robustify
Tobias Burnus
-
helping
Mark Roberge
-
[PATCH 2/2] gfortran.dg/coarray: Require target sleep where calls were recently added, PR125005
Hans-Peter Nilsson
-
[PATCH 1/2] testsuite: New effective-target sleep
Hans-Peter Nilsson
-
[patch, docs, fortran, committed] Fix spelling of options
Thomas Koenig
-
[Patch, fortran] PR117077 - ICE due to allocatable component in hidden type
Paul Richard Thomas
-
[PUSHED] fortran: Fix free-form mixed OpenACC/OpenMP continuation state: 'gfortran.dg/goacc/omp-108382.f90' -> 'gfortran.dg/goacc-gomp/pr108382.f90'
Thomas Schwinge
-
[Patch, fortran] PR120431 - SPREAD does not handle scalar argument and NCOPIES=-1 correctly
Paul Richard Thomas
-
gfortran regressions
Paul Richard Thomas
-
[Patch, fortran] PR121384 - Wrongly initialized associate array descriptor when the target is wrapped in parenthesis
Paul Richard Thomas
-
Helping with bugs
Ryan Koehler
-
[PATCH] fortran: Enable target preprocessor macros with -cpp [PR42954]
Christopher Albert
-
[PATCH, committed] Fortran: fix possible null pointer dereference [PR124807]
Harald Anlauf
-
[PATCH,fortran] Fix Bug 101760 - [13/14/15/16 Regression] ICE in make_ssa_name_fn ...
Jerry D
-
[Patch, fortran] PR120140 - generic type-bound procedure, defined assignment, and subarray reference
Paul Richard Thomas
-
[PATCH,fortran] Fix Bug 93554 - [13/14/15/16 Regression] ICE in expand_oacc_for ...
Jerry D
-
[PATCH] Fortran: defined assignment and vector subscripts [PR120140]
Harald Anlauf
-
[PATCH,fortran] Fix Bug 93814 - [13/14/15/16 Regression] ICE in build_entry_thunks ...
Jerry D
-
[PATCH,fortran] Fix Bug 94978 - [13/14/15/16 Regression] Bogus warning "Array reference at (1) out of bounds ..."
Jerry D
-
[PATCH, fortran] Followup on PR103367
Jerry D
-
[PATCH,fortran] Fix Bug 96986 - [13/14/15/16 Regression] Explicit interface required: volatile argument for ENTRY
Jerry D
-
[patch, committed] Fix some mior things on INQUIRE
Jerry D
-
[patch,fortran] Fix Bug 102430 - [13/14/15/16 Regression] ICE in fold_convert_loc, at fold-const.c
Jerry D
-
[patch, fortran] Fix Bug 103367 - [13/14/15/16 Regression] ICE in gfc_conv_array_initializer
Jerry D
-
[patch, commit] Bug 104827 - [13/14/15/16 Regression] ICE in gfc_conv_array_constructor_expr,
Jerry D
-
[Patch, fortran] PR124598] (PDT) - ICE instantiating nested PDTs
Paul Richard Thomas
-
[PATCH] Fix Bug 79524 - [Regression] valgrind error for gcc/testsuite/gfortran.dg/fimplicit_none_2.f90
Jerry D
-
[patch, libgfortran] Fix return value for ENCODING in INQUIRE
Jerry D
-
[PATCH] Fortran: fix resolution of generic interface with TYPE(C_PTR) [PR66973]
Harald Anlauf
-
[Patch, fortran] PR100155 - [13/14/15/16 Regression] ICE in gfc_conv_intrinsic_size, at fortran/trans-intrinsic.c:805
Paul Richard Thomas
-
[PATCH] Fortran: fix passing a procedure pointer to c_funloc [PR124652]
Harald Anlauf
-
[patch, fortran] Bug 124751 - [16 Regression] Wrong-code after packing assumed-rank actuals for contiguous dummies
Jerry D
-
[no subject]
Science legit
-
[patch, fortran] Committed
Jerry D
-
[patch, fortran] Fix Bug 100194 - [13/14/15/16 Regression] ICE in gfc_trans_create_temp_array...
Jerry D
-
Backport two old patches
Mikael Morin