[Bug other/59648] -O2 -flto compilation of xorg-server-1.15.0 fails

2014-01-06 Thread trippels at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59648

Markus Trippelsdorf  changed:

   What|Removed |Added

 Status|WAITING |RESOLVED
 Resolution|--- |INVALID

--- Comment #9 from Markus Trippelsdorf  ---
So, invalid.


[Bug tree-optimization/59644] [4.9 Regression] r206243 miscompiles Linux kernel

2014-01-06 Thread trippels at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59644

Markus Trippelsdorf  changed:

   What|Removed |Added

   Target Milestone|--- |4.9.0


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread fxcoudert at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #111 from Francois-Xavier Coudert  ---
Thanks Dominique for updating Jochen Kuepper's email address in this bug
report, and stopping the torrent of spam streaming to all of us.

Jochen, you may want to check your “change of email address" message settings,
so that it avoids emails loops and replying to itself endlessly.

[Bug tree-optimization/59644] [4.9 Regression] r206243 miscompiles Linux kernel

2014-01-06 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59644

--- Comment #10 from Jakub Jelinek  ---
If you have time, could you please try to bisect manually which of the 4
functions matters for the bootstrap failure?
Compile printk.s with both compilers and apply by hand only portions of the
diff that are for individual routines?


[Bug ada/59692] Missing __gnat_malloc on mingw targets

2014-01-06 Thread steve at sk2 dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59692

--- Comment #2 from Stephen Kitt  ---
My mistake, this happens with Debian gcc which includes the patch in
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48835


[Bug tree-optimization/59644] [4.9 Regression] r206243 miscompiles Linux kernel

2014-01-06 Thread trippels at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59644

--- Comment #11 from Markus Trippelsdorf  ---
(In reply to Jakub Jelinek from comment #10)
> If you have time, could you please try to bisect manually which of the 4
> functions matters for the bootstrap failure?
> Compile printk.s with both compilers and apply by hand only portions of the
> diff that are for individual routines?

Yes. I will try this later.
In the meantime I've found out that drivers/acpi/acpica/utxferror.c also 
gets miscompiled. If I replace this two object files with good ones and
relink the kernel, everything runs fine (under qemu)...

utxferror shows the same pattern as seen in printk.

--- drivers/acpi/acpica/utxferror.o 2014-01-05 13:02:02.805477131 +0100
+++ /var/tmp/utxferror.o2014-01-05 13:01:41.149293740 +0100
@@ -16,14 +16,13 @@
movq%rsp, %rbp
pushq   %r13
pushq   %r12
-   pushq   %r10
pushq   %rbx
leaq16(%rbp), %r10
movq%rdi, %rbx
movq$.LC0, %rdi
movq%rdx, %r13
-   subq$80, %rsp
movl%esi, %r12d
+   subq$80, %rsp
movq%rcx, -56(%rbp)
movq%r8, -48(%rbp)
movq%r9, -40(%rbp)
@@ -45,7 +44,6 @@
callacpi_os_printf
addq$80, %rsp
popq%rbx
-   popq%r10
popq%r12
popq%r13
popq%rbp
@@ -69,14 +67,13 @@
movq%rsp, %rbp
pushq   %r13
pushq   %r12
-   pushq   %r10
pushq   %rbx
leaq16(%rbp), %r10
movq%rdi, %rbx
movl%edx, %edi
movq%rcx, %r13
-   subq$80, %rsp
movl%esi, %r12d
+   subq$80, %rsp
movq%r8, -48(%rbp)
movq%r9, -40(%rbp)
movq%r10, -112(%rbp)
@@ -101,7 +98,6 @@
callacpi_os_printf
addq$80, %rsp
popq%rbx
-   popq%r10
popq%r12
popq%r13
popq%rbp
...

>From drivers/acpi/acpica/utxferror.c:
void ACPI_INTERNAL_VAR_XFACE
acpi_error(const char *module_name, u32 line_number, const char *format, ...)
{
va_list arg_list;

ACPI_MSG_REDIRECT_BEGIN;
acpi_os_printf(ACPI_MSG_ERROR);

va_start(arg_list, format);
acpi_os_vprintf(format, arg_list);
ACPI_MSG_SUFFIX;
va_end(arg_list);

ACPI_MSG_REDIRECT_END;
}

ACPI_EXPORT_SYMBOL(acpi_error)

void ACPI_INTERNAL_VAR_XFACE
acpi_exception(const char *module_name,
   u32 line_number, acpi_status status, const char *format, ...)
{
va_list arg_list;

ACPI_MSG_REDIRECT_BEGIN;
acpi_os_printf(ACPI_MSG_EXCEPTION "%s, ",
   acpi_format_exception(status));

va_start(arg_list, format);
acpi_os_vprintf(format, arg_list);
ACPI_MSG_SUFFIX;
va_end(arg_list);

ACPI_MSG_REDIRECT_END;
}
...

Strangely the changes in drivers/acpi/acpica/uterror.o doesn't seem to 
matter (maybe the functions are not called with my config).

--- drivers/acpi/acpica/uterror.o   2014-01-05 13:09:05.216038006 +0100
+++ /var/tmp/uterror.o  2014-01-05 13:08:49.529722280 +0100
@@ -16,8 +16,9 @@
pushq   %r14
pushq   %r13
pushq   %r12
-   pushq   %rbx
+   pushq   %r10
leaq16(%rbp), %r10
+   pushq   %rbx
subq$72, %rsp
andb$32, %cl
movq%r9, -48(%rbp)
@@ -46,6 +47,7 @@
 .L1:
addq$72, %rsp
popq%rbx
+   popq%r10
popq%r12
popq%r13
popq%r14
@@ -71,8 +73,9 @@
pushq   %r14
pushq   %r13
pushq   %r12
-   pushq   %rbx
+   pushq   %r10
leaq16(%rbp), %r10
+   pushq   %rbx
subq$72, %rsp
andb$32, %cl
movq%r9, -48(%rbp)
@@ -101,6 +104,7 @@
 .L6:
addq$72, %rsp
popq%rbx
+   popq%r10
popq%r12
popq%r13
popq%r14
@@ -126,8 +130,9 @@
pushq   %r14
pushq   %r13
pushq   %r12
-   pushq   %rbx
+   pushq   %r10
leaq16(%rbp), %r10
+   pushq   %rbx
subq$72, %rsp
andb$32, %cl
movq%r9, -48(%rbp)
@@ -156,6 +161,7 @@
 .L10:
addq$72, %rsp
popq%rbx
+   popq%r10
popq%r12
popq%r13
popq%r14

Here is the list of all changed object files (good vs. bad) for my 
kernel config:

markus@x4 linux % diff -u /var/tmp/out_rev /var/tmp/out_jel
--- /var/tmp/out_rev2014-01-05 11:41:35.064633494 +0100
+++ /var/tmp/out_jel2014-01-05 11:55:52.135130812 +0100
@@ -5,24 +5,24 @@
 86b5b45da1b54ed6746fa8a457b2821a 
arch/x86/boot/compressed/early_serial_console.o
 411ebccf66b24511da94ae4a13b62155  arch/x86/boot/compressed/head_64.o
 48cd91f938d48dc7eb908dadedcd4f20  arch/x86/boot/compressed/misc.o
-cbc5ecb98704eac0fc091f044b9d809b  arch/x

[Bug other/56780] --disable-install-libiberty still installs libiberty.a

2014-01-06 Thread knrstaj at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56780

knrstaj at gmail dot com changed:

   What|Removed |Added

 CC||knrstaj at gmail dot com

--- Comment #8 from knrstaj at gmail dot com ---
--enable-install-libiberty will not install header and lib.

Because in configure.ac 
target_header_dir will be clean at line 414

target_header_dir should be move together with svn commit 199570


[Bug tree-optimization/59644] [4.9 Regression] r206243 miscompiles Linux kernel

2014-01-06 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59644

--- Comment #12 from Jakub Jelinek  ---
(In reply to Markus Trippelsdorf from comment #11)
> (In reply to Jakub Jelinek from comment #10)
> > If you have time, could you please try to bisect manually which of the 4
> > functions matters for the bootstrap failure?
> > Compile printk.s with both compilers and apply by hand only portions of the
> > diff that are for individual routines?
> 
> Yes. I will try this later.
> In the meantime I've found out that drivers/acpi/acpica/utxferror.c also 
> gets miscompiled. If I replace this two object files with good ones and
> relink the kernel, everything runs fine (under qemu)...
> 
> utxferror shows the same pattern as seen in printk.

It is undestandable the patch changes how most/all stdarg functions are
compiled in the kernel, the question is why the kernel cares in certain cases. 
Do you get some OOPS in the utxferror case or also silent hang without being
able to tell what is going on?  In ACPI case, I'd guess if the routine calls
into BIOS that the BIOS (or whatever qemu uses instead of BIOS) might assume
16-byte stack alignment which is part of the ABI, but the kernel intentionally
only guarantees 8-byte stack alignment.


[Bug tree-optimization/59644] [4.9 Regression] r206243 miscompiles Linux kernel

2014-01-06 Thread trippels at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59644

--- Comment #13 from Markus Trippelsdorf  ---
(In reply to Jakub Jelinek from comment #12)
> (In reply to Markus Trippelsdorf from comment #11)
> > (In reply to Jakub Jelinek from comment #10)
> > > If you have time, could you please try to bisect manually which of the 4
> > > functions matters for the bootstrap failure?
> > > Compile printk.s with both compilers and apply by hand only portions of 
> > > the
> > > diff that are for individual routines?
> > 
> > Yes. I will try this later.
> > In the meantime I've found out that drivers/acpi/acpica/utxferror.c also 
> > gets miscompiled. If I replace this two object files with good ones and
> > relink the kernel, everything runs fine (under qemu)...
> > 
> > utxferror shows the same pattern as seen in printk.
> 
> It is undestandable the patch changes how most/all stdarg functions are
> compiled in the kernel, the question is why the kernel cares in certain
> cases.  Do you get some OOPS in the utxferror case or also silent hang
> without being able to tell what is going on?  In ACPI case, I'd guess if the
> routine calls into BIOS that the BIOS (or whatever qemu uses instead of
> BIOS) might assume 16-byte stack alignment which is part of the ABI, but the
> kernel intentionally only guarantees 8-byte stack alignment.

It's also a silent hang in the utxferror case. In both cases the kernel
just executes the halt loop in early_idt_handler:
   0x81a81165 <+69>:hlt
=> 0x81a81166 <+70>:jmp0x81a81165



[Bug tree-optimization/59644] [4.9 Regression] r206243 miscompiles Linux kernel

2014-01-06 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59644

--- Comment #14 from Jakub Jelinek  ---
(In reply to Markus Trippelsdorf from comment #13)
> > It is undestandable the patch changes how most/all stdarg functions are
> > compiled in the kernel, the question is why the kernel cares in certain
> > cases.  Do you get some OOPS in the utxferror case or also silent hang
> > without being able to tell what is going on?  In ACPI case, I'd guess if the
> > routine calls into BIOS that the BIOS (or whatever qemu uses instead of
> > BIOS) might assume 16-byte stack alignment which is part of the ABI, but the
> > kernel intentionally only guarantees 8-byte stack alignment.
> 
> It's also a silent hang in the utxferror case. In both cases the kernel
> just executes the halt loop in early_idt_handler:
>0x81a81165 <+69>:hlt
> => 0x81a81166 <+70>:jmp0x81a81165
> 

I've been out of the kernel business for 13+ years or so, so don't remember
details, looking at head_64.S I wonder if you couldn't try to enable
CONFIG_EARLY_PRINTK and see if you get some better diagnostics.


[Bug tree-optimization/59644] [4.9 Regression] r206243 miscompiles Linux kernel

2014-01-06 Thread trippels at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59644

--- Comment #15 from Markus Trippelsdorf  ---
(In reply to Jakub Jelinek from comment #14)
> (In reply to Markus Trippelsdorf from comment #13)
> > > It is undestandable the patch changes how most/all stdarg functions are
> > > compiled in the kernel, the question is why the kernel cares in certain
> > > cases.  Do you get some OOPS in the utxferror case or also silent hang
> > > without being able to tell what is going on?  In ACPI case, I'd guess if 
> > > the
> > > routine calls into BIOS that the BIOS (or whatever qemu uses instead of
> > > BIOS) might assume 16-byte stack alignment which is part of the ABI, but 
> > > the
> > > kernel intentionally only guarantees 8-byte stack alignment.
> > 
> > It's also a silent hang in the utxferror case. In both cases the kernel
> > just executes the halt loop in early_idt_handler:
> >0x81a81165 <+69>:hlt
> > => 0x81a81166 <+70>:jmp0x81a81165
> > 
> 
> I've been out of the kernel business for 13+ years or so, so don't remember
> details, looking at head_64.S I wonder if you couldn't try to enable
> CONFIG_EARLY_PRINTK and see if you get some better diagnostics.

Yeah, I've already tried this, but it doesn't produce any diagnostic at all.


[Bug rtl-optimization/59649] [4.9 regression] conftest.c miscompiled

2014-01-06 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59649

Jakub Jelinek  changed:

   What|Removed |Added

 CC||jakub at gcc dot gnu.org

--- Comment #3 from Jakub Jelinek  ---
So, IMHO either get_mode_bounds needs to special case BImode like
trunc_int_for_mode does and make the bounds of BImode include values of 0 and
STORE_FLAG_VALUE, or the BImode hunk in trunc_int_for_mode needs to be dropped
and everything analyzed for assumption that BImode true is CONST_INT equal to
STORE_FLAG_VALUE, or ia64 needs to use STORE_FLAG_VALUE -1 (there is a comment
about it in ia64.h that it should be investigated).


[Bug target/59695] New: bad code generation on aarch64 in aarch64_output_mi_thunk

2014-01-06 Thread doko at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59695

Bug ID: 59695
   Summary: bad code generation on aarch64 in
aarch64_output_mi_thunk
   Product: gcc
   Version: 4.9.0
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: target
  Assignee: unassigned at gcc dot gnu.org
  Reporter: doko at gcc dot gnu.org

seen in a segfault running the tests in the coinor-osi package,
https://launchpad.net/bugs/1263576, both in saucy and trusty, version 0.106.4
and 0.106.5. Version 0.103 doesn't show the issue.

both the 4.7 and 4.8 linaro branches show this behaviour, and trunk 20131121
(didn't build a newer one yet).

William Grant tracked that down to a bug with very negative vcall_offsets in
aarch64 multiple inheritance thunks. The example below has two consecutive
thunks, with the second adding 263 instead of subtracting 264.
aarch64_build_constant seems to not handle negative integers. He tried a quick
gcc patch to avoid using aarch64_build_constant, and the coinor-osi tests
succeed.

00401ca4 <_ZTv0_n256_N1C2adEv>:
  401ca4:   f9400010ldr x16, [x0]
  401ca8:   f8500211ldr x17, [x16,#-256]
  401cac:   8b11add x0, x0, x17
  401cb0:   17f9b   401c94 <_ZN1C2adEv>

[...]

00401cc4 <_ZTv0_n264_N1C2aeEv>:
  401cc4:   f9400010ldr x16, [x0]
  401cc8:   d28020f1mov x17, #0x107 // #263
  401ccc:   f8716a11ldr x17, [x16,x17]
  401cd0:   8b11add x0, x0, x17
  401cd4:   17f8b   401cb4 <_ZN1C2aeEv>

Any chance for a quick 2013 review?

Thanks, Matthias

--- a/gcc/config/aarch64/aarch64.c
+++ b/gcc/config/aarch64/aarch64.c
@@ -2540,8 +2540,8 @@
   addr = plus_constant (Pmode, temp0, vcall_offset);
   else
 {
-  aarch64_build_constant (IP1_REGNUM, vcall_offset);
-  addr = gen_rtx_PLUS (Pmode, temp0, temp1);
+  aarch64_add_constant (IP0_REGNUM, IP1_REGNUM, vcall_offset);
+  addr = temp0;
 }

   aarch64_emit_move (temp1, gen_rtx_MEM (Pmode,addr));


[Bug rtl-optimization/59649] [4.9 regression] conftest.c miscompiled

2014-01-06 Thread ebotcazou at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59649

--- Comment #4 from Eric Botcazou  ---
> So, IMHO either get_mode_bounds needs to special case BImode like
> trunc_int_for_mode does and make the bounds of BImode include values of 0
> and STORE_FLAG_VALUE, or the BImode hunk in trunc_int_for_mode needs to be
> dropped and everything analyzed for assumption that BImode true is CONST_INT
> equal to STORE_FLAG_VALUE, or ia64 needs to use STORE_FLAG_VALUE -1 (there
> is a comment about it in ia64.h that it should be investigated).

Given that ia64 is barely maintained these days, the 3rd approach doesn't look
very realistic and the 2nd one a little risky, so the 1st approach is very
likely the way to go I'd think (e.g. if_then_else_cond also special-cases
BImode).


[Bug tree-optimization/59644] [4.9 Regression] r206243 miscompiles Linux kernel

2014-01-06 Thread trippels at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59644

Markus Trippelsdorf  changed:

   What|Removed |Added

  Component|target  |tree-optimization

--- Comment #16 from Markus Trippelsdorf  ---
Ok it's the second hunk that causes the hang:

@@ -2680,28 +2677,25 @@
 printk:
pushq   %rbp
movq%rsp, %rbp
-   pushq   %r10
-   leaq-56(%rbp), %rax
-   leaq16(%rbp), %r10
subq$72, %rsp
+   leaq16(%rbp), %r10
movq%rsi, -48(%rbp)
movq%rdx, -40(%rbp)
movq%rcx, -32(%rbp)
movq%r8, -24(%rbp)
-   xorl%ecx, %ecx
+   leaq-56(%rbp), %rax
movq%r9, -16(%rbp)
movq%rdi, %r8
leaq-80(%rbp), %r9
+   xorl%ecx, %ecx
xorl%edx, %edx
orl $-1, %esi
xorl%edi, %edi
-   movq%r10, -72(%rbp)
movl$8, -80(%rbp)
+   movq%r10, -72(%rbp)
movq%rax, -64(%rbp)
callvprintk_emit
-   addq$72, %rsp
-   popq%r10
-   popq%rbp
+   leave
ret
.size   printk, .-printk
 .LCOLDE47:


[Bug tree-optimization/59644] [4.9 Regression] r206243 miscompiles Linux kernel

2014-01-06 Thread trippels at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59644

--- Comment #17 from Markus Trippelsdorf  ---
If I add "pushq   %r10" and "popq%r10" by hand, the kernel boots fine.


[Bug tree-optimization/59644] [4.9 Regression] r206243 miscompiles Linux kernel

2014-01-06 Thread hjl.tools at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59644

--- Comment #18 from H.J. Lu  ---
(In reply to Markus Trippelsdorf from comment #17)
> If I add "pushq   %r10" and "popq%r10" by hand, the kernel boots fine.

Is r10 used in th function? Please also try adjust
stack instead of push/pop.


[Bug tree-optimization/59644] [4.9 Regression] r206243 miscompiles Linux kernel

2014-01-06 Thread jakub at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59644

--- Comment #19 from Jakub Jelinek  ---
(In reply to Markus Trippelsdorf from comment #17)
> If I add "pushq   %r10" and "popq%r10" by hand, the kernel boots fine.

Thanks.  Now, can you please try to use pushq %r9 and popq %r9 instead?
I.e. whether this is about the stack pointer or whether something is really
upset about the %r10 call clobbered value changing in printk?


[Bug tree-optimization/59644] [4.9 Regression] r206243 miscompiles Linux kernel

2014-01-06 Thread trippels at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59644

--- Comment #20 from Markus Trippelsdorf  ---
(In reply to Jakub Jelinek from comment #19)
> (In reply to Markus Trippelsdorf from comment #17)
> > If I add "pushq   %r10" and "popq%r10" by hand, the kernel boots fine.
> 
> Thanks.  Now, can you please try to use pushq %r9 and popq %r9 instead?

Adding "pushq %r9" and "popq %r9" also results in a bootable kernel...


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #112 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:31, am345166 at gmail dot com 
wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #113 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #114 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #115 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> --

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #112 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:31, am345166 at gmail dot com 
wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #113 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #114 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #115 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> --

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #112 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:31, am345166 at gmail dot com 
wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #113 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #114 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #115 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> --

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #112 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:31, am345166 at gmail dot com 
wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #113 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #114 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #115 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> --

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #112 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:31, am345166 at gmail dot com 
wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #113 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #114 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #115 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> --

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #119 from jochen.kuepper at cfel dot de ---
Created attachment 31670
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31670&action=edit
attachment-5969-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> 

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #112 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:31, am345166 at gmail dot com 
wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #113 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #114 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #115 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> --

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #118 from jochen.kuepper at cfel dot de ---
Created attachment 31669
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31669&action=edit
attachment-5917-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #119 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, 

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #116 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #117 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #120 from jochen.kuepper at cfel dot de ---
Created attachment 31671
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31671&action=edit
attachment-6030-0.dat

--- Comment #121 from jochen.kuepper at cfel dot de ---
Created attachment 31672
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31672&action=edit
attachment-6078-0.dat


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #122 from jochen.kuepper at cfel dot de ---
Created attachment 31673
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31673&action=edit
attachment-6380-0.dat


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #116 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #117 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #118 from jochen.kuepper at cfel dot de ---
Created attachment 31669
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31669&action=edit
attachment-5917-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #119 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, 

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #116 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #117 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #125 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #126 from jochen.kuepper at cfel dot de ---
Created attachment 31674
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31674&action=edit
attachment-7613-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:47, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #37 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore.

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #120 from jochen.kuepper at cfel dot de ---
Created attachment 31671
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31671&action=edit
attachment-6030-0.dat


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #123 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #31 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|   

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #130 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:02, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #50 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #49 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #48 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #47 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #46 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:57, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #45 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:56, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #44 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:55, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #43 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:54, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #42 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:53, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #41 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:52, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #40 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:49, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #39 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #132 from jochen.kuepper at cfel dot de ---
Created attachment 31678
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31678&action=edit
attachment-8543-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #53 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #52 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:02, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #50 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #49 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #48 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #47 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #46 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:57, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #45 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:56, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #44 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:55, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #43 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:54, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #42 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:53, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #41 from jochen.kuepper at cfel dot de ---
> Yo

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #132 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #53 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #52 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:02, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #50 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #49 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #48 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #47 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #46 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:57, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #45 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:56, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #44 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:55, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #43 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:54, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #42 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:53, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #41 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #125 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #126 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:47, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #37 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:46, jochen.kuepper at cfel

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #123 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #31 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|   

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #123 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #31 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|   

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #130 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:02, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #50 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #49 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #48 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #47 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #46 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:57, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #45 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:56, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #44 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:55, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #43 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:54, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #42 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:53, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #41 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:52, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #40 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:49, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #39 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #133 from jochen.kuepper at cfel dot de ---
Created attachment 31679
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31679&action=edit
attachment-8687-0.dat

--- Comment #134 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #130 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:02, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #50 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #49 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #48 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #47 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #46 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:57, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #45 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:56, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #44 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:55, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #43 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:54, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #42 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:53, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #41 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:52, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #40 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:49, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #39 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #133 from jochen.kuepper at cfel dot de ---
Created attachment 31679
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31679&action=edit
attachment-8687-0.dat

--- Comment #134 from jochen.kuepper at cfel dot de ---
Created attachment 31680
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31680&action=edit
attachment-8960-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #127 from jochen.kuepper at cfel dot de ---
Created attachment 31675
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31675&action=edit
attachment-7657-0.dat

--- Comment #128 from jochen.kuepper at cfel dot de ---
Created attachment 31676
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31676&action=edit
attachment-7781-0.dat

--- Comment #129 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:46, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #36 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:45, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #35 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #34 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #33 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #31 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your addre

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #127 from jochen.kuepper at cfel dot de ---
Created attachment 31675
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31675&action=edit
attachment-7657-0.dat

--- Comment #128 from jochen.kuepper at cfel dot de ---
Created attachment 31676
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31676&action=edit
attachment-7781-0.dat

--- Comment #129 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:46, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #36 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:45, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #35 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #34 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #33 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #31 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your addre

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #135 from jochen.kuepper at cfel dot de ---
Created attachment 31681
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31681&action=edit
attachment-9202-0.dat


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #144 from jochen.kuepper at cfel dot de ---
Created attachment 31689
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31689&action=edit
attachment-12105-0.dat


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #141 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:13, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #63 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:12, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #62 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #61 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #60 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #59 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #58 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:08, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #57 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:07, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #56 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:06, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #55 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #54 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #53 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #52 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #135 from jochen.kuepper at cfel dot de ---
Created attachment 31681
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31681&action=edit
attachment-9202-0.dat

--- Comment #136 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:53, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #41 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:52, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #40 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:49, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #39 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:48, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #38 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:47, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #37 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:46, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #36 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:45, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #35 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #34 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #33 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #31 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> ---

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #139 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:49, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #39 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:48, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #38 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:47, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #37 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:46, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #36 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:45, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #35 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #34 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #33 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #31 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #139 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:49, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #39 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:48, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #38 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:47, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #37 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:46, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #36 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:45, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #35 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #34 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #33 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #31 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #138 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #71 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:19, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #70 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:18, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #69 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:17, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #68 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:16, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #67 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:15, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #66 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:14, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #65 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:14, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #64 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:13, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #63 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:12, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #62 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #61 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #60 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #59 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #125 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:32, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #21 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:31, am345166 at gmail dot com 
> wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> alhawiti  changed:
> 
>   What    |Removed |Added
> 
> CC|    |am345166 at gmail dot com
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

--- Comment #126 from jochen.kuepper at cfel dot de ---
Created attachment 31674
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31674&action=edit
attachment-7613-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:47, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #37 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore.

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #138 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #71 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:19, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #70 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:18, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #69 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:17, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #68 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:16, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #67 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:15, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #66 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:14, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #65 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:14, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #64 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:13, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #63 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:12, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #62 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #61 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #60 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #59 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #144 from jochen.kuepper at cfel dot de ---
Created attachment 31689
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31689&action=edit
attachment-12105-0.dat

--- Comment #145 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #61 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #60 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #59 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #58 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:08, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #57 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:07, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #56 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:06, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #55 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #54 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #53 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #52 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:02, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #50 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #142 from jochen.kuepper at cfel dot de ---
Created attachment 31687
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31687&action=edit
attachment-11578-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #81 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:28, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #80 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:27, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #79 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:26, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #78 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #77 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #76 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:24, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #75 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:23, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #74 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:22, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #73 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #72 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #71 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:19, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #70 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:18, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #69 from jochen.kuepper at cfel dot de ---
> Y

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #141 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:13, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #63 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:12, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #62 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #61 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #60 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #59 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #58 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:08, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #57 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:07, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #56 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:06, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #55 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #54 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #53 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #52 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #132 from jochen.kuepper at cfel dot de ---
Created attachment 31678
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31678&action=edit
attachment-8543-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #53 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #52 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:02, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #50 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #49 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #48 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #47 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #46 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:57, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #45 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:56, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #44 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:55, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #43 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:54, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #42 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:53, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #41 from jochen.kuepper at cfel dot de ---
> Yo

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #137 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:45, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #35 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #34 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #33 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #31 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #154 from jochen.kuepper at cfel dot de ---
Created attachment 31696
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31696&action=edit
attachment-13864-0.dat

--- Comment #155 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:44, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #34 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #33 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #31 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #154 from jochen.kuepper at cfel dot de ---
Created attachment 31696
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31696&action=edit
attachment-13864-0.dat


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #151 from jochen.kuepper at cfel dot de ---
Created attachment 31694
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31694&action=edit
attachment-13124-0.dat


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #140 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:54, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #42 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:53, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #41 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:52, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #40 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:49, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #39 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:48, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #38 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:47, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #37 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:46, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #36 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:45, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #35 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #34 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #33 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #31 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #143 from jochen.kuepper at cfel dot de ---
Created attachment 31688
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31688&action=edit
attachment-11851-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:14, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #65 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:14, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #64 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:13, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #63 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:12, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #62 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #61 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #60 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #59 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #58 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:08, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #57 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:07, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #56 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:06, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #55 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #54 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #53 from jochen.kuepper at cfel dot de ---
> Y

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #149 from jochen.kuepper at cfel dot de ---
Created attachment 31692
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31692&action=edit
attachment-12605-0.dat

--- Comment #150 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:33, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #85 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:31, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #84 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:30, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #83 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #82 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #81 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:28, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #80 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:27, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #79 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:26, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #78 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #77 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #76 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:24, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #75 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:23, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #74 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:22, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #161 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:39, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #92 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #91 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #90 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #89 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #88 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #87 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #86 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #85 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:31, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #84 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:30, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #83 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #82 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #81 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:28, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #80 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #159 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #76 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:24, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #75 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:23, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #74 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:22, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #73 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #72 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #71 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:19, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #70 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:18, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #69 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:17, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #68 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:16, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #67 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:15, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #66 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:14, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #65 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:14, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #64 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #157 from jochen.kuepper at cfel dot de ---
Created attachment 31698
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31698&action=edit
attachment-14448-0.dat

--- Comment #158 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #59 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #58 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:08, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #57 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:07, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #56 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:06, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #55 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #54 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #53 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #52 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:02, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #50 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #49 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #48 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #148 from jochen.kuepper at cfel dot de ---
Created attachment 31691
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31691&action=edit
attachment-12573-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #82 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #81 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:28, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #80 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:27, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #79 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:26, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #78 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #77 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #76 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:24, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #75 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:23, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #74 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:22, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #73 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #72 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #71 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:19, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #70 from jochen.kuepper at cfel dot de ---
> Y

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #148 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #82 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #81 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:28, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #80 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:27, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #79 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:26, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #78 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #77 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #76 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:24, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #75 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:23, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #74 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:22, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #73 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #72 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #71 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:19, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #70 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #152 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:36, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #88 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #87 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #86 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #85 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:31, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #84 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:30, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #83 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #82 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #81 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:28, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #80 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:27, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #79 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:26, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #78 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #77 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #76 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #161 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:39, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #92 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #91 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #90 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #89 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #88 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #87 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #86 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #85 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:31, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #84 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:30, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #83 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #82 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #81 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:28, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #80 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #159 from jochen.kuepper at cfel dot de ---
Created attachment 31699
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31699&action=edit
attachment-14771-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #76 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:24, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #75 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:23, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #74 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:22, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #73 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #72 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #71 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:19, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #70 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:18, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #69 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:17, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #68 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:16, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #67 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:15, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #66 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:14, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #65 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:14, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #64 from jochen.kuepper at cfel dot de ---
> Y

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #155 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:44, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #34 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #33 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #31 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #30 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #29 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #28 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #27 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #26 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #25 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #24 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:34, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #23 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #22 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #148 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #82 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #81 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:28, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #80 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:27, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #79 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:26, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #78 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #77 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #76 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:24, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #75 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:23, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #74 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:22, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #73 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #72 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #71 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:19, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #70 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #160 from jochen.kuepper at cfel dot de ---
Created attachment 31700
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31700&action=edit
attachment-14957-0.dat


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #174 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 07:44, dominiq at lps dot ens.fr 
wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> Dominique d'Humieres  changed:
> 
>   What    |Removed |Added
> 
> CC|joc...@fhi-berlin.mpg.de    |
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #148 from jochen.kuepper at cfel dot de ---
Created attachment 31691
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31691&action=edit
attachment-12573-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #82 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #81 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:28, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #80 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:27, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #79 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:26, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #78 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #77 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #76 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:24, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #75 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:23, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #74 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:22, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #73 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #72 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #71 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:19, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #70 from jochen.kuepper at cfel dot de ---
> Y

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #167 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:53, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #108 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:52, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #107 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:51, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #106 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:50, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #105 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:49, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #104 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:48, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #103 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:48, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #102 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:47, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #101 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:46, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #100 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:45, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #99 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #98 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #97 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #96 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anym

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #142 from jochen.kuepper at cfel dot de ---
Created attachment 31687
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31687&action=edit
attachment-11578-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #81 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:28, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #80 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:27, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #79 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:26, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #78 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #77 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #76 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:24, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #75 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:23, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #74 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:22, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #73 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #72 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #71 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:19, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #70 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:18, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #69 from jochen.kuepper at cfel dot de ---
> Y

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #164 from jochen.kuepper at cfel dot de ---
Created attachment 31702
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31702&action=edit
attachment-15558-0.dat


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #171 from jochen.kuepper at cfel dot de ---
Created attachment 31707
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31707&action=edit
attachment-17604-0.dat


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #166 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:48, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #103 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:48, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #102 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:47, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #101 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:46, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #100 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:45, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #99 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #98 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #97 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #96 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #95 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #94 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #93 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #92 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #91 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. 

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #157 from jochen.kuepper at cfel dot de ---
Created attachment 31698
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31698&action=edit
attachment-14448-0.dat

--- Comment #158 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #59 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #58 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:08, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #57 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:07, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #56 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:06, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #55 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #54 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #53 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #52 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:02, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #50 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #49 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #48 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #174 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 07:44, dominiq at lps dot ens.fr 
wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> Dominique d'Humieres  changed:
> 
>   What    |Removed |Added
> 
> CC|joc...@fhi-berlin.mpg.de    |
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #164 from jochen.kuepper at cfel dot de ---
Created attachment 31702
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31702&action=edit
attachment-15558-0.dat

--- Comment #165 from jochen.kuepper at cfel dot de ---
Created attachment 31703
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31703&action=edit
attachment-15716-0.dat


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #162 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:06, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #55 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #54 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #53 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #52 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:02, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #50 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #49 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #48 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #47 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #46 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:57, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #45 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:56, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #44 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:55, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #43 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #162 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:06, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #55 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #54 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #53 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #52 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:02, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #50 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #49 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #48 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #47 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:58, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #46 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:57, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #45 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:56, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #44 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:55, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #43 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #176 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:41, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #94 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #93 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #92 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #91 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #90 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #89 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #88 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #87 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #86 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #85 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:31, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #84 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:30, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #83 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #82 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #171 from jochen.kuepper at cfel dot de ---
Created attachment 31707
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31707&action=edit
attachment-17604-0.dat

--- Comment #172 from jochen.kuepper at cfel dot de ---
Created attachment 31708
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31708&action=edit
attachment-17642-0.dat


[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #150 from jochen.kuepper at cfel dot de ---
Created attachment 31693
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31693&action=edit
attachment-12918-0.dat

You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:33, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #85 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:31, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #84 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:30, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #83 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #82 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:29, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #81 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:28, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #80 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:27, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #79 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:26, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #78 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #77 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #76 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:24, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #75 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:23, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #74 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:22, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #73 from jochen.kuepper at cfel dot de ---
> Y

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #173 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:49, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #104 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:48, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #103 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:48, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #102 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:47, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #101 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:46, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #100 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:45, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #99 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #98 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #97 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #96 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #95 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #94 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #93 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #92 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore.

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #177 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:43, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #96 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #95 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:41, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #94 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:40, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #93 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:39, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #92 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #91 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:38, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #90 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:37, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #89 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:36, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #88 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:35, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #87 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #86 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:33, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #85 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:31, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #84 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #181 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:28, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #80 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:27, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #79 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:26, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #78 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #77 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:25, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #76 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:24, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #75 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:23, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #74 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:22, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #73 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #72 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #71 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:19, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #70 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:18, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #69 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:17, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #68 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #179 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 02:56, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #44 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:55, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #43 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:54, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #42 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:53, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #41 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:52, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #40 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:49, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #39 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:48, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #38 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:47, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #37 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:46, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #36 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:45, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #35 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:44, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #34 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:43, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #33 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 02:42, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #32 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #183 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:11, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #60 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #59 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:09, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #58 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:08, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #57 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:07, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #56 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:06, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #55 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #54 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:05, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #53 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #52 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:03, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #51 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:02, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #50 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #49 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:00, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #48 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

[Bug fortran/15966] [4.0 Only] ICE and segmentation fault on internal write

2014-01-06 Thread jochen.kuepper at cfel dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

--- Comment #184 from jochen.kuepper at cfel dot de ---
You have contacted me on an old email address at the FHI Berlin. This account
will soon not be available anymore. Please change your address book to use
jochen.kuep...@cfel.de.

On 06.01.2014, at 03:23, jochen.kuepper at cfel dot de
 wrote:

> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #74 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:22, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #73 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #72 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:20, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #71 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:19, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #70 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:18, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #69 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:17, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #68 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:16, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #67 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:15, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #66 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:14, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #65 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:14, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #64 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:13, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #63 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Please change your address book to use
> jochen.kuep...@cfel.de.
> 
> On 06.01.2014, at 03:12, jochen.kuepper at cfel dot de
>  wrote:
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
> 
> --- Comment #62 from jochen.kuepper at cfel dot de ---
> You have contacted me on an old email address at the FHI Berlin. This account
> will soon not be available anymore. Plea

  1   2   3   >