* [PATCH v7 0/1] Fix arrays of variable length strings for FORTRAN
@ 2024-10-10 21:01 Abdul Basit Ijaz
2024-10-10 21:01 ` [PATCH v7 1/1] fortran: " Abdul Basit Ijaz
0 siblings, 1 reply; 4+ messages in thread
From: Abdul Basit Ijaz @ 2024-10-10 21:01 UTC (permalink / raw)
To: gdb-patches; +Cc: aburgess, tom, abdul.b.ijaz
From: "Ijaz, Abdul B" <abdul.b.ijaz@intel.com>
Hi All,
This patch fix arrays of variable length strings for FORTRAN.
V6 of this series can be found here:
https://sourceware.org/pipermail/gdb-patches/2024-January/205681.html
Changes since V6:
* Fix the comment text as per feedback from Tom:
Tom: https://sourceware.org/pipermail/gdb-patches/2024-January/205860.html
Abdul: https://sourceware.org/pipermail/gdb-patches/2024-January/205893.html
* Update commit message and comment in the test regarding gfortran limitation:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101826
* Rebase patch on latest master and remove NULL with nullptr as per
latest code guidelines.
Following test configurations are tested and no regression is seen:
gcc64/gcc32/native-gdbserver.
I'm looking forward to comments.
Best Regards,
Abdul Basit
Ijaz, Abdul B (1):
fortran: Fix arrays of variable length strings for FORTRAN
gdb/c-valprint.c | 1 +
gdb/gdbtypes.c | 42 ++++++++++++++-
gdb/testsuite/gdb.fortran/string-types.exp | 4 +-
gdb/testsuite/gdb.fortran/vla-array.exp | 60 ++++++++++++++++++++++
gdb/testsuite/gdb.fortran/vla-array.f90 | 45 ++++++++++++++++
gdb/testsuite/gdb.opt/fortran-string.exp | 2 +-
6 files changed, 149 insertions(+), 5 deletions(-)
create mode 100644 gdb/testsuite/gdb.fortran/vla-array.exp
create mode 100644 gdb/testsuite/gdb.fortran/vla-array.f90
--
2.34.1
Intel Deutschland GmbH
Registered Address: Am Campeon 10, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Sean Fennelly, Jeffrey Schneiderman, Tiffany Doon Silva
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v7 1/1] fortran: Fix arrays of variable length strings for FORTRAN
2024-10-10 21:01 [PATCH v7 0/1] Fix arrays of variable length strings for FORTRAN Abdul Basit Ijaz
@ 2024-10-10 21:01 ` Abdul Basit Ijaz
2024-10-17 23:39 ` Tom Tromey
0 siblings, 1 reply; 4+ messages in thread
From: Abdul Basit Ijaz @ 2024-10-10 21:01 UTC (permalink / raw)
To: gdb-patches; +Cc: aburgess, tom, abdul.b.ijaz
From: "Ijaz, Abdul B" <abdul.b.ijaz@intel.com>
Before this change resolve_dynamic_array_or_string was called for
all TYPE_CODE_ARRAY and TYPE_CODE_STRING types, but, in the end,
this function always called create_array_type_with_stride, which
creates a TYPE_CODE_ARRAY type.
Suppose we have
subroutine vla_array (arr1, arr2)
character (len=*):: arr1 (:)
character (len=5):: arr2 (:)
print *, arr1 ! break-here
print *, arr2
end subroutine vla_array
The "print arr1" and "print arr2" command at the "break-here" line
gives the following output:
(gdb) print arr1
$1 = <incomplete type>
(gdb) print arr2
$2 = ('abcde', 'abcde', 'abcde')
(gdb) ptype arr1
type = Type
End Type
(gdb) ptype arr2
type = character*5 (3)
Dwarf info using Intel® Fortran Compiler for such case contains following:
<1><fd>: Abbrev Number: 12 (DW_TAG_string_type)
<fe> DW_AT_name : (indirect string, offset: 0xd2): .str.ARR1
<102> DW_AT_string_length: 3 byte block: 97 23 8 (DW_OP_push_object_address; DW_OP_plus_uconst: 8)
After this change resolve_dynamic_array_or_string now calls
create_array_type_with_stride or create_string_type, so if the
incoming dynamic type is a TYPE_CODE_STRING then we'll get back a
TYPE_CODE_STRING type. Now gdb shows following:
(gdb) p arr1
$1 = ('abddefghij', 'abddefghij', 'abddefghij', 'abddefghij', 'abddefghij')
(gdb) p arr2
$2 = ('abcde', 'abcde', 'abcde')
(gdb) ptype arr1
type = character*10 (5)
(gdb) ptype arr2
type = character*5 (3)
In case of GFortran, compiler emits DW_TAG_structure_type for string type
arguments of the subroutine and it has only DW_AT_declaration tag. This
results in <incomplete type> in gdb. So, following issue is raised in gcc
bugzilla "https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101826".
Fixing above issue introduce regression in gdb.fortran/mixed-lang-stack.exp,
i.e. the test forces the language to C/C++ and print a Fortran string value.
The string value is a dynamic type with code TYPE_CODE_STRING.
Before this commit the dynamic type resolution would always convert this to
a TYPE_CODE_ARRAY of characters, which the C value printing could handle.
But now after this commit we get a TYPE_CODE_STRING, which
neither the C value printing, or the generic value printing code can
support. And so, I've added support for TYPE_CODE_STRING to the C value
printing, strings are handled just like arrays.
Lastly, in gdb.opt/fortran-string.exp and gdb.fortran/string-types.exp
tests it expects type of character array in 'character (3)' format but now
after this change we get 'character*3', so tests are updated accordingly.
---
gdb/c-valprint.c | 1 +
gdb/gdbtypes.c | 42 ++++++++++++++-
gdb/testsuite/gdb.fortran/string-types.exp | 4 +-
gdb/testsuite/gdb.fortran/vla-array.exp | 60 ++++++++++++++++++++++
gdb/testsuite/gdb.fortran/vla-array.f90 | 45 ++++++++++++++++
gdb/testsuite/gdb.opt/fortran-string.exp | 2 +-
6 files changed, 149 insertions(+), 5 deletions(-)
create mode 100644 gdb/testsuite/gdb.fortran/vla-array.exp
create mode 100644 gdb/testsuite/gdb.fortran/vla-array.f90
diff --git a/gdb/c-valprint.c b/gdb/c-valprint.c
index bad94903449..d5bec286029 100644
--- a/gdb/c-valprint.c
+++ b/gdb/c-valprint.c
@@ -427,6 +427,7 @@ c_value_print_inner (struct value *val, struct ui_file *stream, int recurse,
switch (type->code ())
{
case TYPE_CODE_ARRAY:
+ case TYPE_CODE_STRING:
c_value_print_array (val, stream, recurse, options);
break;
diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c
index 323f15ddaa2..ceb8938fa90 100644
--- a/gdb/gdbtypes.c
+++ b/gdb/gdbtypes.c
@@ -2327,10 +2327,45 @@ resolve_dynamic_array_or_string_1 (struct type *type,
frame, rank - 1,
resolve_p);
}
+ else if (ary_dim != nullptr && ary_dim->code () == TYPE_CODE_STRING)
+ {
+ /* The following special case for TYPE_CODE_STRING should not be
+ needed, ideally we would defer resolving the dynamic type of the
+ array elements until needed later, and indeed, the resolved type
+ of each array element might be different, so attempting to resolve
+ the type here makes no sense.
+
+ However, in Fortran, for arrays of strings, each element must be
+ the same type, as such, the DWARF for the string length relies on
+ the object address of the array itself.
+
+ The problem here is that, when we create values from the dynamic
+ array type, we resolve the data location, and use that as the
+ value address, this completely discards the original value
+ address, and it is this original value address that is the
+ descriptor for the dynamic array, the very address that the DWARF
+ needs us to push in order to resolve the dynamic string length.
+
+ What this means then, is that, given the current state of GDB, if
+ we don't resolve the string length now, then we will have lost
+ access to the address of the dynamic object descriptor, and so we
+ will not be able to resolve the dynamic string later.
+
+ For now then, we handle special case TYPE_CODE_STRING on behalf of
+ Fortran, and hope that this doesn't cause problems for anyone
+ else. */
+ elt_type = resolve_dynamic_type_internal (type->target_type (),
+ addr_stack, frame, 0);
+ }
else
elt_type = type->target_type ();
prop = type->dyn_prop (DYN_PROP_BYTE_STRIDE);
+ if (prop != nullptr && type->code () == TYPE_CODE_STRING)
+ {
+ prop = nullptr;
+ warning (_("byte stride property ignored on string type"));
+ }
if (prop != NULL && resolve_p)
{
if (dwarf2_evaluate_property (prop, frame, addr_stack, &value))
@@ -2351,8 +2386,11 @@ resolve_dynamic_array_or_string_1 (struct type *type,
bit_stride = type->field (0).bitsize ();
type_allocator alloc (type, type_allocator::SMASH);
- return create_array_type_with_stride (alloc, elt_type, range_type, NULL,
- bit_stride);
+ if (type->code () == TYPE_CODE_STRING)
+ return create_string_type (alloc, elt_type, range_type);
+ else
+ return create_array_type_with_stride (alloc, elt_type, range_type, NULL,
+ bit_stride);
}
/* Resolve an array or string type with dynamic properties, return a new
diff --git a/gdb/testsuite/gdb.fortran/string-types.exp b/gdb/testsuite/gdb.fortran/string-types.exp
index 102eaa9688d..35b8654b1f3 100644
--- a/gdb/testsuite/gdb.fortran/string-types.exp
+++ b/gdb/testsuite/gdb.fortran/string-types.exp
@@ -52,7 +52,7 @@ with_test_prefix "third breakpoint, first time" {
# Continue to the third breakpoint.
gdb_continue_to_breakpoint "continue"
gdb_test "print s" " = 'foo'"
- gdb_test "ptype s" "type = character \\(3\\)"
+ gdb_test "ptype s" "type = character\\*3"
}
with_test_prefix "third breakpoint, second time" {
@@ -65,5 +65,5 @@ with_test_prefix "third breakpoint, second time" {
# by most users, so seems good enough.
gdb_continue_to_breakpoint "continue"
gdb_test "print s" " = 'foo\\\\n\\\\t\\\\r\\\\000bar'"
- gdb_test "ptype s" "type = character \\(10\\)"
+ gdb_test "ptype s" "type = character\\*10"
}
diff --git a/gdb/testsuite/gdb.fortran/vla-array.exp b/gdb/testsuite/gdb.fortran/vla-array.exp
new file mode 100644
index 00000000000..4ed2de79280
--- /dev/null
+++ b/gdb/testsuite/gdb.fortran/vla-array.exp
@@ -0,0 +1,60 @@
+# Copyright 2024 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+standard_testfile ".f90"
+load_lib "fortran.exp"
+
+require allow_fortran_tests
+
+if {[prepare_for_testing "failed to prepare" ${testfile} ${srcfile} \
+ {debug f90 quiet}]} {
+ return -1
+}
+
+if ![fortran_runto_main] {
+ untested "could not run to main"
+ return -1
+}
+
+# Try to access vla string / vla string array / string array values.
+gdb_breakpoint [gdb_get_line_number "arr_vla1-print"]
+gdb_continue_to_breakpoint "arr_vla1-print"
+
+# GFortran emits DW_TAG_structure_type for strings and it has only
+# DW_AT_declaration tag. This results in <incomplete type> in gdb.
+if [test_compiler_info "gfortran*" f90] { setup_xfail *-*-* gcc/101826 }
+gdb_test "print arr_vla1" \
+ " = \\\('vlaaryvlaary', 'vlaaryvlaary', 'vlaaryvlaary', 'vlaaryvlaary', 'vlaaryvlaary'\\\)" \
+ "print vla string array"
+
+if [test_compiler_info "gfortran*" f90] { setup_xfail *-*-* gcc/101826 }
+gdb_test "ptype arr_vla1" \
+ "type = character\\*12 \\(5\\)" \
+ "print variable length string array type"
+gdb_test "print arr_vla2" \
+ " = 'vlaary'" \
+ "print variable length string"
+gdb_test "ptype arr_vla2" \
+ "type = character\\*6" \
+ "print variable length string type"
+gdb_test "print arr2" \
+ " = \\\('vlaaryvla', 'vlaaryvla', 'vlaaryvla'\\\)" \
+ "print string array"
+gdb_test "ptype arr2" \
+ "type = character\\*9 \\(3\\)" \
+ "print string array type"
+gdb_test "print rank(arr_vla1)" \
+ "$decimal" \
+ "print string array rank"
diff --git a/gdb/testsuite/gdb.fortran/vla-array.f90 b/gdb/testsuite/gdb.fortran/vla-array.f90
new file mode 100644
index 00000000000..56dd85b1551
--- /dev/null
+++ b/gdb/testsuite/gdb.fortran/vla-array.f90
@@ -0,0 +1,45 @@
+! Copyright 2024 Free Software Foundation, Inc.
+!
+! This program is free software; you can redistribute it and/or modify
+! it under the terms of the GNU General Public License as published by
+! the Free Software Foundation; either version 3 of the License, or
+! (at your option) any later version.
+!
+! This program is distributed in the hope that it will be useful,
+! but WITHOUT ANY WARRANTY; without even the implied warranty of
+! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+! GNU General Public License for more details.
+!
+! You should have received a copy of the GNU General Public License
+! along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+subroutine vla_array_func (arr_vla1, arr_vla2, arr2)
+ character (len=*):: arr_vla1 (:)
+ character (len=*):: arr_vla2
+ character (len=9):: arr2 (:)
+
+ print *, arr_vla1 ! arr_vla1-print
+ print *, arr_vla2
+ print *, arr2
+ print *, rank(arr_vla1)
+end subroutine vla_array_func
+
+program vla_array_main
+interface
+ subroutine vla_array_func (arr_vla1, arr_vla2, arr2)
+ character (len=*):: arr_vla1 (:)
+ character (len=*):: arr_vla2
+ character (len=9):: arr2 (:)
+ end subroutine vla_array_func
+end interface
+ character (len=9) :: arr1 (3)
+ character (len=6) :: arr2
+ character (len=12) :: arr3 (5)
+
+ arr1 = 'vlaaryvla'
+ arr2 = 'vlaary'
+ arr3 = 'vlaaryvlaary'
+
+ call vla_array_func (arr3, arr2, arr1)
+
+end program vla_array_main
diff --git a/gdb/testsuite/gdb.opt/fortran-string.exp b/gdb/testsuite/gdb.opt/fortran-string.exp
index 9122ed1097a..87f42d80774 100644
--- a/gdb/testsuite/gdb.opt/fortran-string.exp
+++ b/gdb/testsuite/gdb.opt/fortran-string.exp
@@ -33,5 +33,5 @@ if {![runto f]} {
gdb_test_no_output "set print frame-arguments all"
gdb_test "frame" ".*s='foo'.*"
-gdb_test "ptype s" "type = character \\(3\\)"
+gdb_test "ptype s" "type = character\\*3"
gdb_test "p s" "\\$\[0-9\]* = 'foo'"
--
2.34.1
Intel Deutschland GmbH
Registered Address: Am Campeon 10, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Sean Fennelly, Jeffrey Schneiderman, Tiffany Doon Silva
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v7 1/1] fortran: Fix arrays of variable length strings for FORTRAN
2024-10-10 21:01 ` [PATCH v7 1/1] fortran: " Abdul Basit Ijaz
@ 2024-10-17 23:39 ` Tom Tromey
2024-10-24 13:31 ` Ijaz, Abdul B
0 siblings, 1 reply; 4+ messages in thread
From: Tom Tromey @ 2024-10-17 23:39 UTC (permalink / raw)
To: Abdul Basit Ijaz; +Cc: gdb-patches, aburgess, tom
>>>>> "Abdul" == Abdul Basit Ijaz <abdul.b.ijaz@intel.com> writes:
Abdul> Before this change resolve_dynamic_array_or_string was called for
Abdul> all TYPE_CODE_ARRAY and TYPE_CODE_STRING types, but, in the end,
Abdul> this function always called create_array_type_with_stride, which
Abdul> creates a TYPE_CODE_ARRAY type.
This part makes sense to me but I have some other questions & comments.
Abdul> Lastly, in gdb.opt/fortran-string.exp and gdb.fortran/string-types.exp
Abdul> tests it expects type of character array in 'character (3)' format but now
Abdul> after this change we get 'character*3', so tests are updated accordingly.
I don't know Fortran but I gather this is the result of the
array->string change.
Abdul> --- a/gdb/c-valprint.c
Abdul> +++ b/gdb/c-valprint.c
Abdul> @@ -427,6 +427,7 @@ c_value_print_inner (struct value *val, struct ui_file *stream, int recurse,
Abdul> switch (type->code ())
Abdul> {
Abdul> case TYPE_CODE_ARRAY:
Abdul> + case TYPE_CODE_STRING:
Abdul> c_value_print_array (val, stream, recurse, options);
I think it would be better to put this in generic_value_print instead.
The normal rule (not extremely well enforced maybe) is that a language's
value-printer should defer to this for any types it doesn't understand.
Abdul> + The problem here is that, when we create values from the dynamic
Abdul> + array type, we resolve the data location, and use that as the
Abdul> + value address, this completely discards the original value
Abdul> + address
I don't think I understand why this happens.
Maybe some DWARF snippet is missing from either this comment or from the
explanatory text in the commit.
Abdul> + if (prop != nullptr && type->code () == TYPE_CODE_STRING)
Abdul> + {
Abdul> + prop = nullptr;
Abdul> + warning (_("byte stride property ignored on string type"));
Abdul> + }
Seems weird to warn in this low-level code.
IMO this could be silently ignored and/or enforced by the debuginfo
readers.
Given this new code, is f77_get_dynamic_length_of_aggregate still
necessary? If so, why? Since it seems like now there are two different
ways of doing the same thing. (Note this isn't necessarily bad -- Ada
has to do this since there are different debuginfo representations that
wind up as different internal representations in gdb.)
Tom
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH v7 1/1] fortran: Fix arrays of variable length strings for FORTRAN
2024-10-17 23:39 ` Tom Tromey
@ 2024-10-24 13:31 ` Ijaz, Abdul B
0 siblings, 0 replies; 4+ messages in thread
From: Ijaz, Abdul B @ 2024-10-24 13:31 UTC (permalink / raw)
To: Tom Tromey; +Cc: gdb-patches, aburgess
Thanks Tom for the feedback.
Abdul>> array in 'character (3)' format but now after this change we get 'character*3', so tests are updated accordingly.
Tom>I don't know Fortran but I gather this is the result of the
Tom>array->string change.
Yes character array are emitted as TYPE_CODE_STRING by Fortran compilers.
Abdul>> c_value_print_array (val, stream, recurse, options);
Tom>I think it would be better to put this in generic_value_print instead.
Tom>The normal rule (not extremely well enforced maybe) is that a language's value-printer should defer to this for any types it doesn't understand.
Abdul> Will move it to generic_value_print in V8. One downside of this is c-valueprint handle string printing well and print all together till null instead of printing each character as array element. So will add similar handling of strings in generic function also.
With c-typeprint , a string type value is printed like:
e = "abcdef"
From the generic value it prints like following by default:
e = {97 'a', 98 'b', 99 'c', 100 'd', 101 'e', 102 'f'}
Abdu>l> + The problem here is that, when we create values from the dynamic
Abdul>> + array type, we resolve the data location, and use that as the
Abdul>> + value address, this completely discards the original value
Abdul>> + address
Tom>I don't think I understand why this happens.
Tom>Maybe some DWARF snippet is missing from either this comment or from the explanatory text in the commit.
Abdul> This comment was added as a known limitation of this change. This was explained in detail by Andrew here : https://sourceware.org/pipermail/gdb-patches/2022-May/189043.html .
Abdul>> + warning (_("byte stride property ignored on string type"));
Abdul>>+ }
Tom>Seems weird to warn in this low-level code.
Tom>IMO this could be silently ignored and/or enforced by the debuginfo readers.
Abdul> Will remove in V8.
Tom>Given this new code, is f77_get_dynamic_length_of_aggregate still necessary? If so, why?
Abdul> As far as I understand, f77_get_dynamic_length_of_aggregate also handle the issues with the upper/lower bounds in calculating total length. In gdbtypes it is resolving the dynamic TYPE_CODE_STRING types and in this function the length of multi dimensional dynamic value type of arrays/string for some function like below where input string may contains any number of characters is calculated. Rest I think above Andrew feedback has lot more information.
subroutine vla_array_func (array)
character (len=*):: array (:)
print *, array ! print dynamic length array
end subroutine vla_array_func
Thanks & Best Regards
Abdul Basit
-----Original Message-----
From: Tom Tromey <tom@tromey.com>
Sent: Friday, October 18, 2024 1:40 AM
To: Ijaz, Abdul B <abdul.b.ijaz@intel.com>
Cc: gdb-patches@sourceware.org; aburgess@redhat.com; tom@tromey.com
Subject: Re: [PATCH v7 1/1] fortran: Fix arrays of variable length strings for FORTRAN
>>>>> "Abdul" == Abdul Basit Ijaz <abdul.b.ijaz@intel.com> writes:
Abdul> Before this change resolve_dynamic_array_or_string was called for
Abdul> all TYPE_CODE_ARRAY and TYPE_CODE_STRING types, but, in the end,
Abdul> this function always called create_array_type_with_stride, which
Abdul> creates a TYPE_CODE_ARRAY type.
This part makes sense to me but I have some other questions & comments.
Abdul> Lastly, in gdb.opt/fortran-string.exp and
Abdul> gdb.fortran/string-types.exp tests it expects type of character
Abdul> array in 'character (3)' format but now after this change we get 'character*3', so tests are updated accordingly.
I don't know Fortran but I gather this is the result of the
array->string change.
Abdul> --- a/gdb/c-valprint.c
Abdul> +++ b/gdb/c-valprint.c
Abdul> @@ -427,6 +427,7 @@ c_value_print_inner (struct value *val, struct ui_file *stream, int recurse,
Abdul> switch (type->code ())
Abdul> {
Abdul> case TYPE_CODE_ARRAY:
Abdul> + case TYPE_CODE_STRING:
Abdul> c_value_print_array (val, stream, recurse, options);
I think it would be better to put this in generic_value_print instead.
The normal rule (not extremely well enforced maybe) is that a language's value-printer should defer to this for any types it doesn't understand.
Abdul> + The problem here is that, when we create values from the dynamic
Abdul> + array type, we resolve the data location, and use that as the
Abdul> + value address, this completely discards the original value
Abdul> + address
I don't think I understand why this happens.
Maybe some DWARF snippet is missing from either this comment or from the explanatory text in the commit.
Abdul> + if (prop != nullptr && type->code () == TYPE_CODE_STRING)
Abdul> + {
Abdul> + prop = nullptr;
Abdul> + warning (_("byte stride property ignored on string type"));
Abdul> + }
Seems weird to warn in this low-level code.
IMO this could be silently ignored and/or enforced by the debuginfo readers.
Given this new code, is f77_get_dynamic_length_of_aggregate still necessary? If so, why? Since it seems like now there are two different ways of doing the same thing. (Note this isn't necessarily bad -- Ada has to do this since there are different debuginfo representations that wind up as different internal representations in gdb.)
Tom
Intel Deutschland GmbH
Registered Address: Am Campeon 10, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Sean Fennelly, Jeffrey Schneiderman, Tiffany Doon Silva
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-10-24 13:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-10 21:01 [PATCH v7 0/1] Fix arrays of variable length strings for FORTRAN Abdul Basit Ijaz
2024-10-10 21:01 ` [PATCH v7 1/1] fortran: " Abdul Basit Ijaz
2024-10-17 23:39 ` Tom Tromey
2024-10-24 13:31 ` Ijaz, Abdul B
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).