public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
@ 2010-12-03 11:30 ` tkoenig at gcc dot gnu.org
  2010-12-03 12:23 ` tkoenig at gcc dot gnu.org
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: tkoenig at gcc dot gnu.org @ 2010-12-03 11:30 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tkoenig at gcc dot gnu.org

--- Comment #2 from Thomas Koenig <tkoenig at gcc dot gnu.org> 2010-12-03 11:29:59 UTC ---
The test case recurses infinitely with
-fdump-fortran-original:

Namespace: A-H: (REAL 8) I-N: (INTEGER 4) O-Z: (REAL 8)
procedure name = MAIN__
  symtree: 'MAIN__'      || symbol: 'MAIN__'
    type spec : (UNKNOWN 0)
    attributes: (PROGRAM PUBLIC  SUBROUTINE)
  symtree: 'ddname'      || symbol: 'ddname'
    type spec : (CHARACTER 32)
    attributes: (VARIABLE )
  symtree: 'dname'       || symbol: 'dname'
    type spec : (CHARACTER 32)
    attributes: (PROCEDURE STATEMENT-PROC  FUNCTION)
    value: 'h810 e=0.01         '
    result: dname
    Formal arglist: x
    Formal namespace
    Namespace: A-H: (REAL 8) I-N: (INTEGER 4) O-Z: (REAL 8)
    procedure name = MAIN__

... and so on.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
  2010-12-03 11:30 ` [Bug fortran/44352] ICE in string_to_single_character tkoenig at gcc dot gnu.org
@ 2010-12-03 12:23 ` tkoenig at gcc dot gnu.org
  2010-12-03 12:26 ` tkoenig at gcc dot gnu.org
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: tkoenig at gcc dot gnu.org @ 2010-12-03 12:23 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

--- Comment #3 from Thomas Koenig <tkoenig at gcc dot gnu.org> 2010-12-03 12:23:14 UTC ---
Author: tkoenig
Date: Fri Dec  3 12:23:11 2010
New Revision: 167416

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=167416
Log:
2010-12-03  Thomas Koenig  <tkoenig@gcc.gnu.org>

    PR fortran/44352
    * dump-parse-tree.c (show_symbol):  Don't show formal namespace
    for statement functions in order to avoid infinite recursion.


Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/dump-parse-tree.c


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
  2010-12-03 11:30 ` [Bug fortran/44352] ICE in string_to_single_character tkoenig at gcc dot gnu.org
  2010-12-03 12:23 ` tkoenig at gcc dot gnu.org
@ 2010-12-03 12:26 ` tkoenig at gcc dot gnu.org
  2010-12-03 12:50 ` tkoenig at gcc dot gnu.org
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: tkoenig at gcc dot gnu.org @ 2010-12-03 12:26 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

--- Comment #4 from Thomas Koenig <tkoenig at gcc dot gnu.org> 2010-12-03 12:26:21 UTC ---
The infinite recursion is fixed, the original problem remains.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2010-12-03 12:26 ` tkoenig at gcc dot gnu.org
@ 2010-12-03 12:50 ` tkoenig at gcc dot gnu.org
  2010-12-03 15:55 ` tkoenig at gcc dot gnu.org
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: tkoenig at gcc dot gnu.org @ 2010-12-03 12:50 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

--- Comment #5 from Thomas Koenig <tkoenig at gcc dot gnu.org> 2010-12-03 12:50:24 UTC ---
Reduced test case, not that there was a lot to reduce:

      character*2 ddname,dname
      dname(x)=   'x'
      ddname=dname(0.0)
          END

(the test succeeds with character*1).


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2010-12-03 12:50 ` tkoenig at gcc dot gnu.org
@ 2010-12-03 15:55 ` tkoenig at gcc dot gnu.org
  2010-12-05 12:03 ` tkoenig at gcc dot gnu.org
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: tkoenig at gcc dot gnu.org @ 2010-12-03 15:55 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

--- Comment #6 from Thomas Koenig <tkoenig at gcc dot gnu.org> 2010-12-03 15:55:42 UTC ---
This works:

      character*2 ddname,dname
      dname(x)=   'x '
      ddname=dname(0.0)
          END

We fail to pad the string for this case.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2010-12-03 15:55 ` tkoenig at gcc dot gnu.org
@ 2010-12-05 12:03 ` tkoenig at gcc dot gnu.org
  2010-12-07  5:40 ` pault at gcc dot gnu.org
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: tkoenig at gcc dot gnu.org @ 2010-12-05 12:03 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pault at gcc dot gnu.org

--- Comment #7 from Thomas Koenig <tkoenig at gcc dot gnu.org> 2010-12-05 12:03:02 UTC ---
Paul, this involves (for me) some heavy voodoo regarding conversion of
strings to trees.

Do you have any idea, by any chance?


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2010-12-05 12:03 ` tkoenig at gcc dot gnu.org
@ 2010-12-07  5:40 ` pault at gcc dot gnu.org
  2010-12-07  9:46 ` burnus at gcc dot gnu.org
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: pault at gcc dot gnu.org @ 2010-12-07  5:40 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

--- Comment #8 from Paul Thomas <pault at gcc dot gnu.org> 2010-12-07 05:39:47 UTC ---
(In reply to comment #7)
> Paul, this involves (for me) some heavy voodoo regarding conversion of
> strings to trees.
> 
> Do you have any idea, by any chance?

Thomas,

The odd thing is that:
      implicit real*8 (a-h,o-z)
      character*32 ddname,dname
      character*4 :: c
      dname(c) =   'h810 e=0.01         '//c
      ddname=dname("w")
      print *, ddname
          END

works, whilst removing the "//c" produces the same failure as the original.

This works too:
      implicit real*8 (a-h,o-z)
      character*32 ddname,dname
      dname(x)=   'h810 e=0.01         '//foo(x)
      ddname=dname(42.0d0)
      print *, ddname
      contains
      character*12 function foo (x)
      real*8 :: x
      write (foo, "(e12.5)") x
      end function
      END

The ICE arises because the result string is not POINTER_TYPE_P in spite of line
trans-expr.c:3965
      tmp = gfc_build_addr_expr (build_pointer_type (type), tmp);

I don't see it at all, right now :-(

Paul


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2010-12-07  5:40 ` pault at gcc dot gnu.org
@ 2010-12-07  9:46 ` burnus at gcc dot gnu.org
  2010-12-07 20:29 ` burnus at gcc dot gnu.org
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: burnus at gcc dot gnu.org @ 2010-12-07  9:46 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

Tobias Burnus <burnus at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |burnus at gcc dot gnu.org

--- Comment #9 from Tobias Burnus <burnus at gcc dot gnu.org> 2010-12-07 09:45:52 UTC ---
(In reply to comment #8)
> The ICE arises because the result string is not POINTER_TYPE_P in spite of
> line trans-expr.c:3965
>       tmp = gfc_build_addr_expr (build_pointer_type (type), tmp);

Well, that's a different string. If one looks at the dump (with the patch) for
'h ' and a length-3 string:

    __builtin_memcpy ((void *) &dname.1, (void *) "h ", 2);
    __builtin_memset ((void *) &dname.1 + 2, 32, 1);
    __builtin_memmove ((void *) &ddname, (void *) &dname.1, 3);

Thus, one first assigns to the statement-function variable ("dname") and then
memmoves the result to the LHS of the assignment ("ddname"). The ICE occured
because '"h "' is not an address expression.

The following patch works. The dump also looks OK (cf. above) - though, I do
not know whether it causes missed-optimization or other issues.

--- a/gcc/fortran/trans-expr.c
+++ b/gcc/fortran/trans-expr.c
@@ -1438,9 +1438,9 @@ gfc_conv_expr_op (gfc_se * se, gfc_expr * expr)
 tree
 gfc_string_to_single_character (tree len, tree str, int kind)
 {
-  gcc_assert (POINTER_TYPE_P (TREE_TYPE (str)));

-  if (!INTEGER_CST_P (len) || TREE_INT_CST_HIGH (len) != 0)
+  if (!INTEGER_CST_P (len) || TREE_INT_CST_HIGH (len) != 0
+      || !POINTER_TYPE_P (TREE_TYPE (str)))
     return NULL_TREE;

   if (TREE_INT_CST_LOW (len) == 1)
@@ -3831,7 +3831,7 @@ gfc_trans_string_copy (stmtblock_t * block, tree dlength,
tree dest,
   else
     dest = gfc_build_addr_expr (pvoid_type_node, dest);

-  if (slength)
+  if (slength && POINTER_TYPE_P (TREE_TYPE (src)))
     src = fold_convert (pvoid_type_node, src);
   else
     src = gfc_build_addr_expr (pvoid_type_node, src);


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2010-12-07  9:46 ` burnus at gcc dot gnu.org
@ 2010-12-07 20:29 ` burnus at gcc dot gnu.org
  2010-12-28 17:59 ` dfranke at gcc dot gnu.org
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: burnus at gcc dot gnu.org @ 2010-12-07 20:29 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

--- Comment #10 from Tobias Burnus <burnus at gcc dot gnu.org> 2010-12-07 20:29:25 UTC ---
Author: burnus
Date: Tue Dec  7 20:29:22 2010
New Revision: 167569

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=167569
Log:
2010-12-07  Tobias Burnus  <burnus@net-b.de>

        PR fortran/44352
        * trans-expr.c (gfc_string_to_single_character): Return if not
        POINTER_TYPE_P.
        (gfc_trans_string_copy): gfc_build_addr_expr if src or dest is
        not a pointer.
        (gfc_trans_string_copy): Make sure the argument string type
        has a string length, fix indention, and remove not needed
        gfc_build_addr_expr.

2010-12-07  Tobias Burnus  <burnus@net-b.de>

        PR fortran/44352
        * gfortran.dg/string_4.f90: New.


Added:
    trunk/gcc/testsuite/gfortran.dg/string_4.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans-expr.c
    trunk/gcc/testsuite/ChangeLog


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2010-12-07 20:29 ` burnus at gcc dot gnu.org
@ 2010-12-28 17:59 ` dfranke at gcc dot gnu.org
  2010-12-30 17:53 ` tkoenig at gcc dot gnu.org
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dfranke at gcc dot gnu.org @ 2010-12-28 17:59 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

Daniel Franke <dfranke at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING
                 CC|                            |dfranke at gcc dot gnu.org

--- Comment #11 from Daniel Franke <dfranke at gcc dot gnu.org> 2010-12-28 17:59:25 UTC ---
Tobias, anything left to do here or can this report be closed?


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2010-12-28 17:59 ` dfranke at gcc dot gnu.org
@ 2010-12-30 17:53 ` tkoenig at gcc dot gnu.org
  2011-02-27 22:55 ` mikael at gcc dot gnu.org
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: tkoenig at gcc dot gnu.org @ 2010-12-30 17:53 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |4.6.0

--- Comment #12 from Thomas Koenig <tkoenig at gcc dot gnu.org> 2010-12-30 17:53:02 UTC ---
Should this be backported to 4.5?


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2010-12-30 17:53 ` tkoenig at gcc dot gnu.org
@ 2011-02-27 22:55 ` mikael at gcc dot gnu.org
  2011-02-28  6:55 ` paul.richard.thomas at gmail dot com
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: mikael at gcc dot gnu.org @ 2011-02-27 22:55 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

Mikael Morin <mikael at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mikael at gcc dot gnu.org

--- Comment #13 from Mikael Morin <mikael at gcc dot gnu.org> 2011-02-27 22:47:33 UTC ---
Anything left to do here ?


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (11 preceding siblings ...)
  2011-02-27 22:55 ` mikael at gcc dot gnu.org
@ 2011-02-28  6:55 ` paul.richard.thomas at gmail dot com
  2011-07-24 18:52 ` dfranke at gcc dot gnu.org
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: paul.richard.thomas at gmail dot com @ 2011-02-28  6:55 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

--- Comment #14 from paul.richard.thomas at gmail dot com <paul.richard.thomas at gmail dot com> 2011-02-28 06:47:38 UTC ---
Dear Mikael,

It needs the backporting that Thomas suggested.  I have been away from
home for a bit and so have not had access to a 4.5 tree.  I'll be back
in 04 tomorrow night :-)

Cheers

Paul

On Sun, Feb 27, 2011 at 11:48 PM, mikael at gcc dot gnu.org
<gcc-bugzilla@gcc.gnu.org> wrote:
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352
>
> Mikael Morin <mikael at gcc dot gnu.org> changed:
>
>           What    |Removed                     |Added
> ----------------------------------------------------------------------------
>                 CC|                            |mikael at gcc dot gnu.org
>
> --- Comment #13 from Mikael Morin <mikael at gcc dot gnu.org> 2011-02-27 22:47:33 UTC ---
> Anything left to do here ?
>
> --
> Configure bugmail: http://gcc.gnu.org/bugzilla/userprefs.cgi?tab=email
> ------- You are receiving this mail because: -------
> You are on the CC list for the bug.
>


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (12 preceding siblings ...)
  2011-02-28  6:55 ` paul.richard.thomas at gmail dot com
@ 2011-07-24 18:52 ` dfranke at gcc dot gnu.org
  2011-07-24 20:06 ` burnus at gcc dot gnu.org
  2011-09-11 12:07 ` tkoenig at gcc dot gnu.org
  15 siblings, 0 replies; 17+ messages in thread
From: dfranke at gcc dot gnu.org @ 2011-07-24 18:52 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

--- Comment #15 from Daniel Franke <dfranke at gcc dot gnu.org> 2011-07-24 18:51:30 UTC ---
Was this ever backported? Should it still be backported?


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (13 preceding siblings ...)
  2011-07-24 18:52 ` dfranke at gcc dot gnu.org
@ 2011-07-24 20:06 ` burnus at gcc dot gnu.org
  2011-09-11 12:07 ` tkoenig at gcc dot gnu.org
  15 siblings, 0 replies; 17+ messages in thread
From: burnus at gcc dot gnu.org @ 2011-07-24 20:06 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

--- Comment #16 from Tobias Burnus <burnus at gcc dot gnu.org> 2011-07-24 20:05:33 UTC ---
(In reply to comment #15)
> Was this ever backported? Should it still be backported?

No, it has only been fixed for 4.6 (and thus 4.7), but not for 4.5. It is not a
regression but also existed already in 4.1. Thus, I am inclined to say no -
also given that Debian stable and RHEL use 4.4 and SLES uses 4.3 such that no
long-term Linux distribution uses that version.

The patch is also not obvious (though also not really complicated). Hence, I
would suggest to close it as fixed. Unless, someone really wants to backport
it.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
       [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
                   ` (14 preceding siblings ...)
  2011-07-24 20:06 ` burnus at gcc dot gnu.org
@ 2011-09-11 12:07 ` tkoenig at gcc dot gnu.org
  15 siblings, 0 replies; 17+ messages in thread
From: tkoenig at gcc dot gnu.org @ 2011-09-11 12:07 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|                            |FIXED

--- Comment #17 from Thomas Koenig <tkoenig at gcc dot gnu.org> 2011-09-11 12:04:56 UTC ---
In the absence of any votes for backporting, closing as FIXED.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug fortran/44352] ICE in string_to_single_character
  2010-05-31 16:29 [Bug fortran/44352] New: " zeccav at gmail dot com
@ 2010-06-01  7:44 ` burnus at gcc dot gnu dot org
  0 siblings, 0 replies; 17+ messages in thread
From: burnus at gcc dot gnu dot org @ 2010-06-01  7:44 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from burnus at gcc dot gnu dot org  2010-06-01 07:44 -------
CONFIRMED - and no regression. Thanks for the report!

test.f90:4:0: internal compiler error: in string_to_single_character, at
fortran/trans-expr.c:1394

Failing assert:

string_to_single_character (tree len, tree str, int kind)
{
  gcc_assert (POINTER_TYPE_P (TREE_TYPE (str)));


-- 

burnus at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |ice-on-valid-code
   Last reconfirmed|0000-00-00 00:00:00         |2010-06-01 07:44:41
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44352


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2011-09-11 12:06 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-44352-4@http.gcc.gnu.org/bugzilla/>
2010-12-03 11:30 ` [Bug fortran/44352] ICE in string_to_single_character tkoenig at gcc dot gnu.org
2010-12-03 12:23 ` tkoenig at gcc dot gnu.org
2010-12-03 12:26 ` tkoenig at gcc dot gnu.org
2010-12-03 12:50 ` tkoenig at gcc dot gnu.org
2010-12-03 15:55 ` tkoenig at gcc dot gnu.org
2010-12-05 12:03 ` tkoenig at gcc dot gnu.org
2010-12-07  5:40 ` pault at gcc dot gnu.org
2010-12-07  9:46 ` burnus at gcc dot gnu.org
2010-12-07 20:29 ` burnus at gcc dot gnu.org
2010-12-28 17:59 ` dfranke at gcc dot gnu.org
2010-12-30 17:53 ` tkoenig at gcc dot gnu.org
2011-02-27 22:55 ` mikael at gcc dot gnu.org
2011-02-28  6:55 ` paul.richard.thomas at gmail dot com
2011-07-24 18:52 ` dfranke at gcc dot gnu.org
2011-07-24 20:06 ` burnus at gcc dot gnu.org
2011-09-11 12:07 ` tkoenig at gcc dot gnu.org
2010-05-31 16:29 [Bug fortran/44352] New: " zeccav at gmail dot com
2010-06-01  7:44 ` [Bug fortran/44352] " burnus at gcc dot gnu dot org

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).