public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/32140]  New: wrong code
@ 2007-05-29 15:03 jv244 at cam dot ac dot uk
  2007-05-29 15:32 ` [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1 burnus at gcc dot gnu dot org
                   ` (28 more replies)
  0 siblings, 29 replies; 30+ messages in thread
From: jv244 at cam dot ac dot uk @ 2007-05-29 15:03 UTC (permalink / raw)
  To: gcc-bugs

The following (reduced from CP2K, PR 29975) generates wrong code with gfortran
(gcc version 4.3.0 20070526)

MODULE TEST
CONTAINS
PURE FUNCTION s2a_3(s1,s2,s3) RESULT(a)
    CHARACTER(LEN=*), INTENT(IN)             :: s1, s2, s3
    CHARACTER(LEN=4), DIMENSION(3)        :: a

  a(1)=s1; a(2)=s2; a(3)=s3
END FUNCTION
END MODULE

USE TEST
write(6,*) s2a_3("a","bb","ccc")
END

gfortran -O0 test.f90
> ./a.out
 a   bb  ccc
> gfortran -O2 test.f90
> ./a.out
 abb  ccc

the latter case also shows:

==21268== Syscall param write(buf) points to uninitialised byte(s)
==21268==    at 0x4FF9CB0: __write_nocancel (in /lib64/libc-2.4.so)
==21268==    by 0x4BB8E10: do_write (unix.c:336)
==21268==    by 0x4BB8EB1: fd_flush (unix.c:386)
==21268==    by 0x4BB9AE7: fd_write (unix.c:761)
==21268==    by 0x4BB65E5: _gfortrani_next_record (transfer.c:2526)
==21268==    by 0x4BB69F5: finalize_transfer (transfer.c:2663)
==21268==    by 0x4BB6A38: _gfortran_st_write_done (transfer.c:2801)
==21268==    by 0x40090D: MAIN__ (in /users/vondele/g95/a.out)
==21268==    by 0x400AEB: main (fmain.c:22)
==21268==  Address 0x517A3CF is 151 bytes inside a block of size 8,344 alloc'd
==21268==    at 0x4A20A56: malloc (vg_replace_malloc.c:149)
==21268==    by 0x4B39518: _gfortrani_get_mem (memory.c:53)
==21268==    by 0x4BB9879: fd_to_stream (unix.c:1043)
==21268==    by 0x4BB86BB: _gfortrani_init_units (unit.c:515)
==21268==    by 0x4B39267: init (main.c:152)
==21268==    by 0x4BC8B61: (within
/data/vondele/gcc_trunk/build/lib64/libgfortran.so.3.0.0)
==21268==    by 0x4B35F8A: (within
/data/vondele/gcc_trunk/build/lib64/libgfortran.so.3.0.0)


-- 
           Summary: wrong code
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: jv244 at cam dot ac dot uk


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
@ 2007-05-29 15:32 ` burnus at gcc dot gnu dot org
  2007-05-29 15:41 ` jv244 at cam dot ac dot uk
                   ` (27 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: burnus at gcc dot gnu dot org @ 2007-05-29 15:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from burnus at gcc dot gnu dot org  2007-05-29 15:32 -------
Regression happens between 2007-05-25-r125057 and 2007-05-29-r125159.


-- 

burnus at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |wrong-code
      Known to fail|                            |4.3.0
      Known to work|                            |4.2.0 4.1.3
   Last reconfirmed|0000-00-00 00:00:00         |2007-05-29 15:32:38
               date|                            |
            Summary|wrong code                  |[4.3 Regression]
                   |                            |Miscompilation with -O1
   Target Milestone|---                         |4.3.0


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
  2007-05-29 15:32 ` [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1 burnus at gcc dot gnu dot org
@ 2007-05-29 15:41 ` jv244 at cam dot ac dot uk
  2007-05-29 18:09 ` [Bug middle-end/32140] " burnus at gcc dot gnu dot org
                   ` (26 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: jv244 at cam dot ac dot uk @ 2007-05-29 15:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from jv244 at cam dot ac dot uk  2007-05-29 15:41 -------
I assume this is another incarnation of this bugs but leads to a segfault and a
slightly different valgrind output:

MODULE TEST
CONTAINS
PURE FUNCTION s2a_3(s1,s2,s3) RESULT(a)
    CHARACTER(LEN=*), INTENT(IN)             :: s1, s2, s3
    CHARACTER(LEN=1000), DIMENSION(3)        :: a

  a(1)=s1; a(2)=s2; a(3)=s3
END FUNCTION
END MODULE

USE TEST
character(LEN=80) :: b(3)
b=s2a_3("Distribution by marix blocks", "Distribution by matrix rows",&
         "Distribution by matrix columns")
write(6,*) b(3)
END

==21561==    at 0x4A21AF0: memset (mc_replace_strmem.c:490)
==21561==    by 0x400A8B: __test_MOD_s2a_3 (in /users/vondele/g95/a.out)
==21561==    by 0x40089D: MAIN__ (in /users/vondele/g95/a.out)
==21561==    by 0x400B4B: main (fmain.c:22)
==21561==  Address 0x7FF005B80 is not stack'd, malloc'd or (recently) free'd
==21561==
==21561== Process terminating with default action of signal 11 (SIGSEGV)
==21561==  Access not within mapped region at address 0x7FF005B80
==21561==    at 0x4A21AF0: memset (mc_replace_strmem.c:490)
==21561==    by 0x400A8B: __test_MOD_s2a_3 (in /users/vondele/g95/a.out)
==21561==    by 0x40089D: MAIN__ (in /users/vondele/g95/a.out)
==21561==    by 0x400B4B: main (fmain.c:22)


-- 


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


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

* [Bug middle-end/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
  2007-05-29 15:32 ` [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1 burnus at gcc dot gnu dot org
  2007-05-29 15:41 ` jv244 at cam dot ac dot uk
@ 2007-05-29 18:09 ` burnus at gcc dot gnu dot org
  2007-05-29 18:15 ` burnus at gcc dot gnu dot org
                   ` (25 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: burnus at gcc dot gnu dot org @ 2007-05-29 18:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from burnus at gcc dot gnu dot org  2007-05-29 18:09 -------
More regression hunting: FAILS with r125059,  Works with r125057.
Conclusion: The patch causing or revealing this wrong-code error is:

r125058 | rguenth | 2007-05-25 11:07:29 +0200 (Fr, 25 Mai 2007) | 10 lines
2007-05-24  Richard Guenther  <rguenther@suse.de>
        Andrew Pinski  <andrew_pinski@playstation.sony.com>
        PR tree-optimization/31982

Andrew or Richard, could you have a look?


-- 

burnus at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rguenth at gcc dot gnu dot
                   |                            |org, pinskia at gcc dot gnu
                   |                            |dot org, burnus at gcc dot
                   |                            |gnu dot org
          Component|fortran                     |middle-end


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


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

* [Bug middle-end/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (2 preceding siblings ...)
  2007-05-29 18:09 ` [Bug middle-end/32140] " burnus at gcc dot gnu dot org
@ 2007-05-29 18:15 ` burnus at gcc dot gnu dot org
  2007-05-29 18:26 ` pinskia at gcc dot gnu dot org
                   ` (24 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: burnus at gcc dot gnu dot org @ 2007-05-29 18:15 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from burnus at gcc dot gnu dot org  2007-05-29 18:15 -------
> I assume this is another incarnation of this bugs but leads to a segfault and
> a slightly different valgrind output
This test works for me with gfortran as of this morning and also with gfortran
r12505 (on x86_64-unknown-linux-gnu, no valgrind error).


-- 


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


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

* [Bug middle-end/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (3 preceding siblings ...)
  2007-05-29 18:15 ` burnus at gcc dot gnu dot org
@ 2007-05-29 18:26 ` pinskia at gcc dot gnu dot org
  2007-05-30  9:23 ` jv244 at cam dot ac dot uk
                   ` (23 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-05-29 18:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from pinskia at gcc dot gnu dot org  2007-05-29 18:26 -------
Plus forwprop only does:
  D.1046_37 = &(*__result.0_23)[0];
....
  D.1048_41 = (char *) _s1_2(D);
  D.1049_42 = D.1046_37 + D.1048_41;

Into:
  D.1046_37 = &(*__result.0_23)[0];
...
  D.1048_41 = (char *) _s1_2(D);
  D.1049_42 = &(*__result.0_23)[_s1_2(D)];

Which is not wrong.
I wonder if my patch at:
http://gcc.gnu.org/ml/gcc-patches/2007-05/msg01769.html

Fixes the issue.


-- 


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


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

* [Bug middle-end/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (4 preceding siblings ...)
  2007-05-29 18:26 ` pinskia at gcc dot gnu dot org
@ 2007-05-30  9:23 ` jv244 at cam dot ac dot uk
  2007-06-03  9:02 ` jv244 at cam dot ac dot uk
                   ` (22 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: jv244 at cam dot ac dot uk @ 2007-05-30  9:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from jv244 at cam dot ac dot uk  2007-05-30 09:22 -------
(In reply to comment #5)
> I wonder if my patch at:
> http://gcc.gnu.org/ml/gcc-patches/2007-05/msg01769.html
> Fixes the issue.

both testcases still fail for me at -O2 with this morning's compiler (which
should include the above mentioned patch).


-- 


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


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

* [Bug middle-end/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (5 preceding siblings ...)
  2007-05-30  9:23 ` jv244 at cam dot ac dot uk
@ 2007-06-03  9:02 ` jv244 at cam dot ac dot uk
  2007-06-12 15:47 ` [Bug fortran/32140] " fxcoudert at gcc dot gnu dot org
                   ` (21 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: jv244 at cam dot ac dot uk @ 2007-06-03  9:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from jv244 at cam dot ac dot uk  2007-06-03 09:02 -------
suspect that this is a front end issue, where something wrong is being
generated for s2a_3. It seems to trigger only if a is a function results, and
s1,s2,s3 are len=*. 


-- 

jv244 at cam dot ac dot uk changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |paulthomas2 at wanadoo dot
                   |                            |fr


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (6 preceding siblings ...)
  2007-06-03  9:02 ` jv244 at cam dot ac dot uk
@ 2007-06-12 15:47 ` fxcoudert at gcc dot gnu dot org
  2007-06-13  0:55 ` jvdelisle at gcc dot gnu dot org
                   ` (20 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-06-12 15:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from fxcoudert at gcc dot gnu dot org  2007-06-12 15:47 -------
I see it also with today's compiler on i686-darwin:

$ gfortran test.f90 -O2 && ./a.out 
 a.>bb  ccc 


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fxcoudert at gcc dot gnu dot
                   |                            |org
   Last reconfirmed|2007-05-29 15:32:38         |2007-06-12 15:47:40
               date|                            |


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (7 preceding siblings ...)
  2007-06-12 15:47 ` [Bug fortran/32140] " fxcoudert at gcc dot gnu dot org
@ 2007-06-13  0:55 ` jvdelisle at gcc dot gnu dot org
  2007-06-15 14:43 ` jv244 at cam dot ac dot uk
                   ` (19 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2007-06-13  0:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from jvdelisle at gcc dot gnu dot org  2007-06-13 00:55 -------
Also see failure at optimizations -O1, -O2, -O3 on x86-64-gnu-linuz (intel)


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (8 preceding siblings ...)
  2007-06-13  0:55 ` jvdelisle at gcc dot gnu dot org
@ 2007-06-15 14:43 ` jv244 at cam dot ac dot uk
  2007-06-15 15:12 ` fxcoudert at gcc dot gnu dot org
                   ` (18 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: jv244 at cam dot ac dot uk @ 2007-06-15 14:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from jv244 at cam dot ac dot uk  2007-06-15 14:43 -------
The segfault is still happening with today's code. This is the simplest case I
find to trigger it. 

MODULE TEST
CONTAINS
FUNCTION s2a_3(s1) RESULT(a)
    CHARACTER(LEN=*), INTENT(IN)             :: s1
    CHARACTER(LEN=1000) :: a(3)
    a(1)=s1
END FUNCTION
END MODULE

USE TEST
character(LEN=1000) :: b(3)
b=s2a_3(REPEAT("1",101))
write(6,*) b(1)
END

The point where things segfault is the assignment a(1)=s1, and in particular
the  corresponding memset (which adds blanks to the rest of the string). This
memset much be getting a wrong pointer to start with, according to valgrind:

==23016== Invalid write of size 1
==23016==    at 0x4A1AAF0: memset (mc_replace_strmem.c:490)
==23016==    by 0x400A4D: __test_MOD_s2a_3 (test2.f90:6)
==23016==    by 0x40098B: MAIN__ (test2.f90:12)
==23016==    by 0x400A8B: main (fmain.c:22)
==23016==  Address 0x7FF017FA8 is not stack'd, malloc'd or (recently) free'd

the bug only happens if a is at the same time
1) a function result
2) an array
3) of character variables with a len known at compile time.

in the dump tree original, the corresponding memset line looks like:

__builtin_memset (&(*__result.0)[NON_LVALUE_EXPR <stride.0> + offset.1] + (char
*) (int8) D.1374, 32, 1000 - (int8) D.1374);

but I can't see how I could debug further.... pretty please, can somebody look
into that... I'd like to be able to test all the stuff that went in since the
bug was opened a few weeks ago.


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (9 preceding siblings ...)
  2007-06-15 14:43 ` jv244 at cam dot ac dot uk
@ 2007-06-15 15:12 ` fxcoudert at gcc dot gnu dot org
  2007-06-15 15:22 ` pinskia at gmail dot com
                   ` (17 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-06-15 15:12 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from fxcoudert at gcc dot gnu dot org  2007-06-15 15:12 -------
(In reply to comment #10)
> but I can't see how I could debug further.... pretty please, can somebody look
> into that... I'd like to be able to test all the stuff that went in since the
> bug was opened a few weeks ago.

I don't have much time right now, but here's what I saw and how I would debug
it further: by using -O1 and -fdump-tree-optimized, you can get a dump of the
optimized tree. The memset call is changed by the optimizer into:

    __builtin_memset (&(*__result.0)[_s1], 32, 1000 - _s1);

Compared to your original tree, where stride.0 = 1 and offset.1 = -stride.0,
and D.1374 = _s1, they look equivalent, except for the transformation of
&(*array)[_s1] into &(*array)[0] + (char *) _s1. I think that should not be a
problem, except if there is some type mismatch. Further debugging probably
needs to find the part of the front-end that generates this memset call (easily
done by grepping for BUILT_IN_MEMSET in the front-end files), setting a
break-point there and looking into the types of each operands. This last
operation can be done within gdb by calling the debug_tree() function on the
trees you're interested in.

When (and if) I get some time after my PhD defence (next monday), I'll try to
look into it; after all, I am interested in cp2k myself, even though it doesn't
yet work for what I need it to do ;-)


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2007-06-12 15:47:40         |2007-06-15 15:12:01
               date|                            |


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (10 preceding siblings ...)
  2007-06-15 15:12 ` fxcoudert at gcc dot gnu dot org
@ 2007-06-15 15:22 ` pinskia at gmail dot com
  2007-06-16 19:04 ` jv244 at cam dot ac dot uk
                   ` (16 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: pinskia at gmail dot com @ 2007-06-15 15:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from pinskia at gmail dot com  2007-06-15 15:22 -------
Subject: Re:  [4.3 Regression] Miscompilation with -O1

On 15 Jun 2007 15:12:02 -0000, fxcoudert at gcc dot gnu dot org
<gcc-bugzilla@gcc.gnu.org> wrote:
> When (and if) I get some time after my PhD defence (next monday), I'll try to
> look into it; after all, I am interested in cp2k myself, even though it doesn't
> yet work for what I need it to do ;-)

note this might get cleared up with pointer_plus.
I have not tried it there yet but i will be posting a patch and committing
soon.

--Pinski


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (11 preceding siblings ...)
  2007-06-15 15:22 ` pinskia at gmail dot com
@ 2007-06-16 19:04 ` jv244 at cam dot ac dot uk
  2007-06-17 17:54 ` pault at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: jv244 at cam dot ac dot uk @ 2007-06-16 19:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from jv244 at cam dot ac dot uk  2007-06-16 19:04 -------
(In reply to comment #12)

> note this might get cleared up with pointer_plus.
> I have not tried it there yet but i will be posting a patch and committing
> soon.

I've tried current trunk (which should contain pointer_plus), but the test case
still segfaults.


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (12 preceding siblings ...)
  2007-06-16 19:04 ` jv244 at cam dot ac dot uk
@ 2007-06-17 17:54 ` pault at gcc dot gnu dot org
  2007-06-17 21:40 ` [Bug middle-end/32140] " pinskia at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: pault at gcc dot gnu dot org @ 2007-06-17 17:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from pault at gcc dot gnu dot org  2007-06-17 17:54 -------
A slight modification of the example in comment #2:

MODULE TEST
CONTAINS
FUNCTION s2a_3(s1) RESULT(a)
    CHARACTER(LEN=*), INTENT(IN)             :: s1
    CHARACTER(LEN=LEN(s1)) :: a(3)
    a(1)=s1
END FUNCTION
END MODULE

USE TEST
character(LEN=1000) :: b(3)
b=s2a_3(REPEAT("1",101))
write(6,*) b(1)
END

yields something that works at any level of optimization.  Note that the main
program remains untouched, except for all the code that comes from the
interface evaluation of the character length.  Oddly, the POINTER_PLUS bit
remains unchanged.  I have stared at the code, trying to understand where an
optimization senstivity might come in, with no success. Perhaps, somebody
smarter than me will see the difference.

Paul  



-- 


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


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

* [Bug middle-end/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (13 preceding siblings ...)
  2007-06-17 17:54 ` pault at gcc dot gnu dot org
@ 2007-06-17 21:40 ` pinskia at gcc dot gnu dot org
  2007-06-17 21:45 ` [Bug fortran/32140] " pinskia at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-06-17 21:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from pinskia at gcc dot gnu dot org  2007-06-17 21:40 -------
We have an extra:
(insn 39 38 40 t.f90:7 (parallel [
            (set (reg:SI 73)
                (ashift:SI (reg:SI 68 [ _s1 ])
                    (const_int 2 [0x2])))
            (clobber (reg:CC 17 flags))
        ]) -1 (nil))

After the patch.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|fortran                     |middle-end


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (14 preceding siblings ...)
  2007-06-17 21:40 ` [Bug middle-end/32140] " pinskia at gcc dot gnu dot org
@ 2007-06-17 21:45 ` pinskia at gcc dot gnu dot org
  2007-06-17 22:08 ` pinskia at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-06-17 21:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from pinskia at gcc dot gnu dot org  2007-06-17 21:45 -------
I was wrong in marking this as a middle-end issue.
We have:
  char[0:D.1026][1:4] * __result.0;
  char * temp.87;
...
  temp.87 = &(*__result.0)[0];
  __builtin_memset (temp.87 + (<unnamed-unsigned:32>) _s1, 32, 4 - _s1);
----------- cut ----------

The midde-end thinks it can combine &(*__result.0)[0] + (<unnamed-unsigned:32>)
_s1 to just &(*__result.0)[(<unnamed-unsigned:32>) _s1] when it should have
combined it to &(*__result.0)[0][(<unnamed-unsigned:32>) _s1]

So
&(*__result.0)[0]
is wrong, it should have been:
&(*__result.0)[0][0].

Let me see if I can figure out where to fix the front-end.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |pinskia at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
          Component|middle-end                  |fortran


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (15 preceding siblings ...)
  2007-06-17 21:45 ` [Bug fortran/32140] " pinskia at gcc dot gnu dot org
@ 2007-06-17 22:08 ` pinskia at gcc dot gnu dot org
  2007-06-18  1:49 ` jvdelisle at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-06-17 22:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from pinskia at gcc dot gnu dot org  2007-06-17 22:08 -------
Here is the fix which I am testing, basically instead of creating
(typeof(array[0] "*")&array we create &array[lb]:
Index: trans.c
===================================================================
--- trans.c     (revision 125777)
+++ trans.c     (working copy)
@@ -266,7 +266,14 @@ gfc_build_addr_expr (tree type, tree t)
       && TREE_CODE (base_type) == ARRAY_TYPE
       && TYPE_MAIN_VARIANT (TREE_TYPE (type))
         == TYPE_MAIN_VARIANT (TREE_TYPE (base_type)))
-    natural_type = type;
+    {
+      tree min_val = size_zero_node;
+      tree type_domain = TYPE_DOMAIN (base_type);
+      if (type_domain && TYPE_MIN_VALUE (type_domain))
+       min_val = TYPE_MIN_VALUE (type_domain);
+      t = build4 (ARRAY_REF, TREE_TYPE (type), t, min_val, NULL_TREE,
NULL_TREE);
+      natural_type = type;
+    }
   else
     natural_type = build_pointer_type (base_type);


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (16 preceding siblings ...)
  2007-06-17 22:08 ` pinskia at gcc dot gnu dot org
@ 2007-06-18  1:49 ` jvdelisle at gcc dot gnu dot org
  2007-06-20  8:48 ` jv244 at cam dot ac dot uk
                   ` (10 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2007-06-18  1:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #18 from jvdelisle at gcc dot gnu dot org  2007-06-18 01:49 -------
Patch tested OK on x86-64-Gnu-Linux.

I am also able to compile and run cp2k where before I was getting a segfault.


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (17 preceding siblings ...)
  2007-06-18  1:49 ` jvdelisle at gcc dot gnu dot org
@ 2007-06-20  8:48 ` jv244 at cam dot ac dot uk
  2007-06-20  8:52 ` fxcoudert at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: jv244 at cam dot ac dot uk @ 2007-06-20  8:48 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #19 from jv244 at cam dot ac dot uk  2007-06-20 08:48 -------
(In reply to comment #17)
> Here is the fix which I am testing, basically instead of creating
> (typeof(array[0] "*")&array we create &array[lb]:

did this fix test OK ? Since it fixes the CP2K issue, I would hope that it
could be posted for review soon.


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (18 preceding siblings ...)
  2007-06-20  8:48 ` jv244 at cam dot ac dot uk
@ 2007-06-20  8:52 ` fxcoudert at gcc dot gnu dot org
  2007-06-20 13:22 ` pinskia at gmail dot com
                   ` (8 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-06-20  8:52 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #20 from fxcoudert at gcc dot gnu dot org  2007-06-20 08:52 -------
(In reply to comment #19)
> did this fix test OK ? Since it fixes the CP2K issue, I would hope that it
> could be posted for review soon.

The patch is OK to commit along with a testcase from this PR.


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (19 preceding siblings ...)
  2007-06-20  8:52 ` fxcoudert at gcc dot gnu dot org
@ 2007-06-20 13:22 ` pinskia at gmail dot com
  2007-06-20 13:53 ` rguenth at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: pinskia at gmail dot com @ 2007-06-20 13:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #21 from pinskia at gmail dot com  2007-06-20 13:22 -------
Subject: Re:  [4.3 Regression] Miscompilation with -O1

> did this fix test OK ? Since it fixes the CP2K issue, I would hope that it
> could be posted for review soon.

I can't get to testing this patch fully until Friday evening (PST) at
the earliest.  Sorry about that.  My machine was crashing and then I
left for Japan on Monday and won't get access to a machine until
Friday at the earliest with all the meetings in Japan.

-- Pinski


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (20 preceding siblings ...)
  2007-06-20 13:22 ` pinskia at gmail dot com
@ 2007-06-20 13:53 ` rguenth at gcc dot gnu dot org
  2007-06-20 13:55 ` rguenth at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-06-20 13:53 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #22 from rguenth at gcc dot gnu dot org  2007-06-20 13:53 -------
It would be nice if a fortraner could make the testcase not output to
stdout/err
but to /dev/null instead.

open(6,'/dev/null')

didn't work for me ;)

Just to make a testcase suitable for the testsuite.


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (21 preceding siblings ...)
  2007-06-20 13:53 ` rguenth at gcc dot gnu dot org
@ 2007-06-20 13:55 ` rguenth at gcc dot gnu dot org
  2007-06-20 14:03 ` jv244 at cam dot ac dot uk
                   ` (5 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-06-20 13:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #23 from rguenth at gcc dot gnu dot org  2007-06-20 13:55 -------
stupid me.  open(6,file='/dev/null')  works.


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (22 preceding siblings ...)
  2007-06-20 13:55 ` rguenth at gcc dot gnu dot org
@ 2007-06-20 14:03 ` jv244 at cam dot ac dot uk
  2007-06-20 14:03 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: jv244 at cam dot ac dot uk @ 2007-06-20 14:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #24 from jv244 at cam dot ac dot uk  2007-06-20 14:03 -------
(In reply to comment #22)
> It would be nice if a fortraner could make the testcase not output to
> stdout/err
> but to /dev/null instead.
> 
> open(6,'/dev/null')
> 
> didn't work for me ;)
> 
> Just to make a testcase suitable for the testsuite.

The following testcase, for an unpatched compiler, aborts at -O1, works fine at
-O0, and doesn't write to stdout/stderr... I guess that fits the testsuite ?

MODULE TEST
CONTAINS
PURE FUNCTION s2a_3(s1,s2,s3) RESULT(a)
    CHARACTER(LEN=*), INTENT(IN)             :: s1, s2, s3
    CHARACTER(LEN=4), DIMENSION(3)        :: a

  a(1)=s1; a(2)=s2; a(3)=s3
END FUNCTION
END MODULE

USE TEST
character(len=12) :: line
write(line,'(3A4)') s2a_3("a","bb","ccc")
IF (line.NE."a   bb  ccc") CALL ABORT()
END


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (23 preceding siblings ...)
  2007-06-20 14:03 ` jv244 at cam dot ac dot uk
@ 2007-06-20 14:03 ` pinskia at gcc dot gnu dot org
  2007-06-20 14:05 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-06-20 14:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #25 from pinskia at gcc dot gnu dot org  2007-06-20 14:03 -------
Here is a testcase which also checks the resulting array is correct:
MODULE TEST
CONTAINS
PURE FUNCTION s2a_3(s1,s2,s3) RESULT(a)
    CHARACTER(LEN=*), INTENT(IN)             :: s1, s2, s3
    CHARACTER(LEN=1000), DIMENSION(3)        :: a

  a(1)=s1; a(2)=s2; a(3)=s3
END FUNCTION
END MODULE

USE TEST
character(LEN=80) :: b(3)
b=s2a_3("Distribution by marix blocks", "Distribution by matrix rows",&
         "Distribution by matrix columns")
if (b(1) .eq. "Distribution by marix blocks") call abort();
if (b(2) .eq. "Distribution by matrix rows") call abort();
if (b(3) .eq. "Distribution by matrix columns") call abort();
END


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (24 preceding siblings ...)
  2007-06-20 14:03 ` pinskia at gcc dot gnu dot org
@ 2007-06-20 14:05 ` pinskia at gcc dot gnu dot org
  2007-06-20 14:08 ` rguenther at suse dot de
                   ` (2 subsequent siblings)
  28 siblings, 0 replies; 30+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-06-20 14:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #26 from pinskia at gcc dot gnu dot org  2007-06-20 14:05 -------
(In reply to comment #25)
> Here is a testcase which also checks the resulting array is correct:
oh s/eq/ne/ I did not test mine and it is 11pm and I have to get up early in
the morning.


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (25 preceding siblings ...)
  2007-06-20 14:05 ` pinskia at gcc dot gnu dot org
@ 2007-06-20 14:08 ` rguenther at suse dot de
  2007-06-20 14:57 ` rguenth at gcc dot gnu dot org
  2007-06-20 14:59 ` rguenth at gcc dot gnu dot org
  28 siblings, 0 replies; 30+ messages in thread
From: rguenther at suse dot de @ 2007-06-20 14:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #27 from rguenther at suse dot de  2007-06-20 14:07 -------
Subject: Re:  [4.3 Regression] Miscompilation with -O1

On Wed, 20 Jun 2007, jv244 at cam dot ac dot uk wrote:

> 
> 
> ------- Comment #24 from jv244 at cam dot ac dot uk  2007-06-20 14:03 -------
> (In reply to comment #22)
> > It would be nice if a fortraner could make the testcase not output to
> > stdout/err
> > but to /dev/null instead.
> > 
> > open(6,'/dev/null')
> > 
> > didn't work for me ;)
> > 
> > Just to make a testcase suitable for the testsuite.
> 
> The following testcase, for an unpatched compiler, aborts at -O1, works fine at
> -O0, and doesn't write to stdout/stderr... I guess that fits the testsuite ?

Yep, I'll use that.

Thanks,
Richard.

> MODULE TEST
> CONTAINS
> PURE FUNCTION s2a_3(s1,s2,s3) RESULT(a)
>     CHARACTER(LEN=*), INTENT(IN)             :: s1, s2, s3
>     CHARACTER(LEN=4), DIMENSION(3)        :: a
> 
>   a(1)=s1; a(2)=s2; a(3)=s3
> END FUNCTION
> END MODULE
> 
> USE TEST
> character(len=12) :: line
> write(line,'(3A4)') s2a_3("a","bb","ccc")
> IF (line.NE."a   bb  ccc") CALL ABORT()
> END
> 
> 
> 


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (26 preceding siblings ...)
  2007-06-20 14:08 ` rguenther at suse dot de
@ 2007-06-20 14:57 ` rguenth at gcc dot gnu dot org
  2007-06-20 14:59 ` rguenth at gcc dot gnu dot org
  28 siblings, 0 replies; 30+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-06-20 14:57 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #28 from rguenth at gcc dot gnu dot org  2007-06-20 14:57 -------
Subject: Bug 32140

Author: rguenth
Date: Wed Jun 20 14:57:10 2007
New Revision: 125886

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=125886
Log:
2007-06-20  Andrew Pinski  <andrew_pinski@playstation.sony.com>
        Richard Guenther  <rguenther@suse.de>

        PR fortran/32140
        * trans.c (gfc_build_addr_expr): Use the correct types.

        * gfortran.fortran-torture/execute/pr32140.f90: New testcase.

Added:
    trunk/gcc/testsuite/gfortran.fortran-torture/execute/pr32140.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1
  2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
                   ` (27 preceding siblings ...)
  2007-06-20 14:57 ` rguenth at gcc dot gnu dot org
@ 2007-06-20 14:59 ` rguenth at gcc dot gnu dot org
  28 siblings, 0 replies; 30+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-06-20 14:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #29 from rguenth at gcc dot gnu dot org  2007-06-20 14:59 -------
Fixe.d


-- 

rguenth at gcc dot gnu dot org changed:

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


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


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

end of thread, other threads:[~2007-06-20 14:59 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-05-29 15:03 [Bug fortran/32140] New: wrong code jv244 at cam dot ac dot uk
2007-05-29 15:32 ` [Bug fortran/32140] [4.3 Regression] Miscompilation with -O1 burnus at gcc dot gnu dot org
2007-05-29 15:41 ` jv244 at cam dot ac dot uk
2007-05-29 18:09 ` [Bug middle-end/32140] " burnus at gcc dot gnu dot org
2007-05-29 18:15 ` burnus at gcc dot gnu dot org
2007-05-29 18:26 ` pinskia at gcc dot gnu dot org
2007-05-30  9:23 ` jv244 at cam dot ac dot uk
2007-06-03  9:02 ` jv244 at cam dot ac dot uk
2007-06-12 15:47 ` [Bug fortran/32140] " fxcoudert at gcc dot gnu dot org
2007-06-13  0:55 ` jvdelisle at gcc dot gnu dot org
2007-06-15 14:43 ` jv244 at cam dot ac dot uk
2007-06-15 15:12 ` fxcoudert at gcc dot gnu dot org
2007-06-15 15:22 ` pinskia at gmail dot com
2007-06-16 19:04 ` jv244 at cam dot ac dot uk
2007-06-17 17:54 ` pault at gcc dot gnu dot org
2007-06-17 21:40 ` [Bug middle-end/32140] " pinskia at gcc dot gnu dot org
2007-06-17 21:45 ` [Bug fortran/32140] " pinskia at gcc dot gnu dot org
2007-06-17 22:08 ` pinskia at gcc dot gnu dot org
2007-06-18  1:49 ` jvdelisle at gcc dot gnu dot org
2007-06-20  8:48 ` jv244 at cam dot ac dot uk
2007-06-20  8:52 ` fxcoudert at gcc dot gnu dot org
2007-06-20 13:22 ` pinskia at gmail dot com
2007-06-20 13:53 ` rguenth at gcc dot gnu dot org
2007-06-20 13:55 ` rguenth at gcc dot gnu dot org
2007-06-20 14:03 ` jv244 at cam dot ac dot uk
2007-06-20 14:03 ` pinskia at gcc dot gnu dot org
2007-06-20 14:05 ` pinskia at gcc dot gnu dot org
2007-06-20 14:08 ` rguenther at suse dot de
2007-06-20 14:57 ` rguenth at gcc dot gnu dot org
2007-06-20 14:59 ` rguenth 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).