Re: thread_local broken in gcc 4.8 ?

2014-01-06 Thread Jakub Jelinek
On Mon, Jan 06, 2014 at 03:53:13PM +1000, Conrad S wrote:
 According to http://gcc.gnu.org/gcc-4.8/cxx0x_status.html
 the keyword thread_local is supported in gcc 4.8 when using -std=c++11

Bugs should be reported to http://gcc.gnu.org/bugzilla/

 file foo.hpp:
 class foo {
   public:
   inline  foo() {}
   inline ~foo() {}
   inline double bar() { return 123.456; }
   };
 
 
 file a.cpp:
 #include foo.hpp
 thread_local foo foo_instance;
 
 
 file b.cpp:
 #include foo.hpp
 extern thread_local foo foo_instance;
 
 int main(int argc, char** argv) {
   double bar = foo_instance.bar();
   return 0;
   }

Apparently this got fixed/made latent on the trunk by
http://gcc.gnu.org/r199577 , but it isn't clear if that was an intentional
bugfix somewhere; in any case the patch doesn't look to be backportable.

Wonder if the ctor is really trivial it wouldn't be better to treat it as
not needing dynamic initialization, rather than trying to initialize it
dynamically.

So, please file this into bugzilla.

Jakub


Re: thread_local broken in gcc 4.8 ?

2014-01-06 Thread Conrad S
On Mon, Jan 6, 2014 at 6:25 PM, Jakub Jelinek ja...@redhat.com wrote:
 Wonder if the ctor is really trivial it wouldn't be better to treat it as
 not needing dynamic initialization, rather than trying to initialize it
 dynamically.

This is actually a reduced case scenario.
In the original case the constructor is not trivial.

 So, please file this into bugzilla.

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


Re: Finding a relevant place for a custom GCC pass

2014-01-06 Thread Richard Biener
Sandeep K Chaudhary babbusandy2...@gmail.com wrote:
Thanks for the reply Marc !

If I place my pass before ccp then I guess I have to implement the
means to perform calculations on my own so that it can duplicate the
functionality of ccp, right? I will also look at the source code to
see if I can modify the source code directly. Is pass_ccp in
tree-ssa-ccp.c the correct one to look at? Please let me know.

Yes. You want to look at the il before substitute_and_fold together with the 
ccp lattice.

Richard.

Yes, I have tried the second option you suggested. It's not convenient
for my purpose.

Thanks and regards,
Sandeep.

On Sun, Jan 5, 2014 at 10:24 PM, Marc Glisse marc.gli...@inria.fr
wrote:
 On Sun, 5 Jan 2014, Sandeep K Chaudhary wrote:

 Hi guys,

 I want to write a pass which can find the calculations performed on
 the right hand side of each statement. In the below example -

VAR1 = 1;
VAR1++;
VAR1 = VAR1 + 5;

 I want to be able to capture the equivalent statements i.e.

 VAR1 = 1;
 VAR1 = 2;
 VAR1 = 7;

 To achieve this, I dumped various intermediate files using
 -fdump-tree-all'. I looked at all of them manually and found that
 either the statements are non-evaluated (during initial stages) or
 they are completely optimized, hence losing the intermediate
 assignment calculations (during later stages). There is no pass
which
 generates dumps related to the intermediate assignment calculations.

 I am not able to understand where I should aim to place my pass in
 order to achieve the above mentioned functionality. Initially, I had
 thought of writing IPA pass but I looked at 'copyprop' and
'forwprop'
 dumps and saw that everything is optimized to the last statement. I
am
 not able to understand how a pass should be placed between GIMPLE
 stage and later stages so that intermediate calculations such as the
 ones mentioned above in the example, can be captured. Please provide
 suggestions and help regarding this.


 Short answer: you can't.

 You can either have your passe before ccp, and duplicate the
functionality
 of ccp, or you can hack the ccp pass to insert your code in it, but I
doubt
 there is a suitable plugin hook for that, so you may have to edit
gcc's
 source code directly.

 If you compile with -g and look at debug statements, the information
is not
 completely lost after the pass that optimizes this to just VAR1 = 7,
but it
 still wouldn't be convenient to use that for your purpose.

 --
 Marc Glisse




Re: Remove spam in GCC mailing list

2014-01-06 Thread Ian Lance Taylor
On Sun, Jan 5, 2014 at 9:10 PM, Christopher Faylor
cgf-use-the-mailinglist-ple...@gnu.org wrote:
 On Sat, Dec 28, 2013 at 08:40:07PM +0900, Tae Wong wrote:
You want to send a mail to python-dev at python dot org.

The spam still exists in gcc-bugs mailing list:

There's no reason that the gcc-bugs mailing list can post bug reports 
directly.

Please delete spam messages from gcc-bugs.

 These messages are, AFAIK, pointless.  I'm not aware of anyone working
 as a spam removal service.  I am one of the admins for gcc.gnu.org and I
 sure as @#$* am not paid enough to do this.  I do spend a lot of my time
 trying to make sure that spam doesn't get through and that's the limit
 of what I'm willing to do.

 I'd think that a lot of this thread (especially the launchpad part)
 is off-topic for this mailing list.

As Jonathan Wakely suggested, I think that Tae Wong is a spammer,
and is adding links to these messages in hopes of boosting their
ranking numbers.  Either that, or he or she is trying to remove these
links because they are now detected as spam and are decreasing the
ranking of the web pages they mention.

Ian


Four times faster printf %e

2014-01-06 Thread Povilas Kanapickas
Hello,

I have a proof-of-concept implementation of floating-point printf()
which is 4 to 6 times faster than the glibc printf() in common use cases
while producing exactly the same output (including rounding, etc.). I
would like to contribute it to stdlibc++ as an implementation of
floating-point num_put facet.

Contributing this directly to glibc may look like a better idea.
However, in light of this comment in locale_facets.tcc[1] and since my
implementation happens to be in C++, I decided to ask here first.

If you are interested, please read on :-)

The printf() implementation in glibc is comparatively inefficient since
the internal scaling computations are always lossless. In some common
cases only limited precision is enough. Also, since arbitrary precision
library is used and the precision is not known beforehand, there are
very few inlining opportunities.

The approach that I've taken is to perform the computation in fixed
precision that is sufficient to represent usable number of digits (e.g.
96-bits are used for double and 64-bits for float). The computation is
imprecise, which makes correct rounding impossible. Fortunately we can
estimate the upper bound of an error in the final value that we extract
the digits from. Then, if we see that our value is so close to the
rounding boundary that the error is sufficient to affect the rounding
decision, we abort and use the regular, exact printf() instead.

It's easily seen that the above approach is valid only if the requested
precision* is sufficiently small. This issue is solved by checking the
precision and using the libc printf() if it is too large. Fortunately,
most of the time the requested precision is not much larger than
DBL_DECIMAL_DIG, so the faster formatter is still usable.

* - here 'precision' is the total number of sequested significant digits.

Unfortunately the faster formatter can actually be slower in cases when
it detects that it doesn't have enough precision only in the rounding
step. This is solved by using smaller than internal precision in the
initial check. For example, in the current implementation we process
requests with at most 21 digits of precision and assume that the
internal precision is 24 digits. This means that libc printf() is called
in the rounding step only in 0.1% cases, which doesn't impact the
overall performance a lot.

Here is the actual performance comparison on Intel Wolfdale (64bit
mode). The number is number of seconds that the program spent in user
mode. In both cases there were 20m doubles roughly exponentially
distributed in the quoted ranges. The null_* cases are equivalent to the
regular ones except that the call to formatting function is omitted.

* 1e-30 .. 1e30, -1e-30 .. -1e30

 cftime: 4.01
 libc  time: 16.93
 null_cf   time: 0.58
 null_libc time: 1.06

* 1e-300 .. 1e300, -1e-300 .. -1e300

 cftime: 4.37
 libc  time: 26.71
 null_cf   time: 0.59
 null_libc time: 1.02

I've tested 1 billion conversions of positive and negative numbers in
1e-300..1e300 range to verify that the conversion is roughly correct.
There were no failed cases. As far as I see there are no fundamental
problems with the approach, thus even if some failures are detected in
the future, it should be possible to solve them by adjusting the
internal parameters or increasing precision. A throughout mathematical
investigation should be done to verify correctness though.

The code is here: https://github.com/p12tic/floatfmt

The Makefile contains some documentation.

* 'make test' produces speed results
* 'make testout' produces several files for output comparison

I would like to stress that all of this is proof-of-concept. The code is
not pretty or well documented and there are a lot of quirks and bugs
that I didn't bother to fix yet. I've tested only double precision
numbers, only the format %.17e and only on 64bit x86 host.

Are stdlibc++ mainainers interested in the idea? The implementation
could be adapted to include a version that uses an arbitrary precision
arithmetic library, so that the dependency on printf() could be removed
entirely along with the support code.

If the answer to the above question is yes, then should I prepare a
patch myself or would someone from the GCC developers adapt my idea?
Please have in mind that I'm new to GCC stdlib development so it may
take some time until I have a patch that satisfies the internal library
standards. It may also take some developers' time too to explain me the
accepted way of doing things :-)

Regards,
Povilas

[1]: libstdc++-v3/include/bits/locale_facets.tcc:

// The following code uses vsnprintf (or vsprintf(), when
// _GLIBCXX_USE_C99 is not defined) to convert floating point values
// for insertion into a stream.  An optimization would be to replace
// them with code that works directly on a wide buffer and then use
// __pad to do the padding.  It would be good to replace them anyway
// to gain back the efficiency that C++ provides by knowing up 

gcc buildbot?

2014-01-06 Thread Philippe Baril Lecavalier


Hi,

Is anyone working on an implementation of buildbot http://buildbot.net/
for GCC?

I have been experimenting with buildbot lately, and I would be glad to
help in providing it. If there is interest, I could have a prototype and
a detailed proposal ready in a few days. It could serve GCC, binutils
and some important libraries as well.

Cheers,

Philippe Baril Lecavalier



Re: Four times faster printf %e

2014-01-06 Thread Jonathan Wakely
On 6 January 2014 20:54, Povilas Kanapickas wrote:

 I have a proof-of-concept implementation of floating-point printf()
 which is 4 to 6 times faster than the glibc printf() in common use cases
 while producing exactly the same output (including rounding, etc.). I
 would like to contribute it to stdlibc++ as an implementation of
 floating-point num_put facet.

Thanks for your interest in contributing to libstdc++ (N.B. it's not
called stdlibc++!)

The project has its own mailing list at libstd...@gcc.gnu.org so if
you want to reach the maintainers you should discuss it on that list.
If you want to contribute then the first step is to read
http://gcc.gnu.org/onlinedocs/libstdc++/manual/appendix_contributing.html
in particular the legal prerequisites.


Re: Four times faster printf %e

2014-01-06 Thread Povilas Kanapickas
On 01/06/2014 11:04 PM, Jonathan Wakely wrote:
 On 6 January 2014 20:54, Povilas Kanapickas wrote:

 I have a proof-of-concept implementation of floating-point printf()
 which is 4 to 6 times faster than the glibc printf() in common use cases
 while producing exactly the same output (including rounding, etc.). I
 would like to contribute it to stdlibc++ as an implementation of
 floating-point num_put facet.
 
 Thanks for your interest in contributing to libstdc++ (N.B. it's not
 called stdlibc++!)
 
 The project has its own mailing list at libstd...@gcc.gnu.org so if
 you want to reach the maintainers you should discuss it on that list.
 If you want to contribute then the first step is to read
 http://gcc.gnu.org/onlinedocs/libstdc++/manual/appendix_contributing.html
 in particular the legal prerequisites.
 

Thanks, I've sent the same email (modulo the stdlibc++ issue :-) ) to
the libstdc++ list.

Regards,
Povilas



[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 trippels at gcc dot gnu.org changed:

   What|Removed |Added

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

--- Comment #9 from Markus Trippelsdorf trippels at gcc dot gnu.org ---
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 trippels at gcc dot gnu.org 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 fxcoudert at gcc dot gnu.org ---
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 jakub at gcc dot gnu.org ---
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 steve at sk2 dot org ---
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 trippels at gcc dot gnu.org ---
(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

[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 jakub at gcc dot gnu.org ---
(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 trippels at gcc dot gnu.org ---
(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
early_idt_handler+69


[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 jakub at gcc dot gnu.org ---
(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
 early_idt_handler+69

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 trippels at gcc dot gnu.org ---
(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
  early_idt_handler+69
 
 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 jakub at gcc dot gnu.org changed:

   What|Removed |Added

 CC||jakub at gcc dot gnu.org

--- Comment #3 from Jakub Jelinek jakub at gcc dot gnu.org ---
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 ebotcazou at gcc dot gnu.org ---
 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 trippels at gcc dot gnu.org changed:

   What|Removed |Added

  Component|target  |tree-optimization

--- Comment #16 from Markus Trippelsdorf trippels at gcc dot gnu.org ---
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 trippels at gcc dot gnu.org ---
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 hjl.tools at gmail dot com ---
(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 jakub at gcc dot gnu.org ---
(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 trippels at gcc dot gnu.org ---
(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 gcc-bugzi...@gcc.gnu.org
wrote:

 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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 gcc-bugzi...@gcc.gnu.org
wrote:

 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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 gcc-bugzi...@gcc.gnu.org
wrote:

 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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 gcc-bugzi...@gcc.gnu.org
wrote:

 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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 gcc-bugzi...@gcc.gnu.org
wrote:

 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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=31670action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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 

[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 gcc-bugzi...@gcc.gnu.org
wrote:

 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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=31669action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 

[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=31671action=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=31672action=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=31673action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 

[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=31669action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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=31674action=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
gcc-bugzi...@gcc.gnu.org wrote:

 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 --- Comment #37 from 

[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=31671action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31678action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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, 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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
gcc-bugzi...@gcc.gnu.org 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 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31679action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31679action=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=31680action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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 

[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=31675action=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=31676action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 --- Comment #25 from 

[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=31675action=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=31676action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 --- Comment #25 from 

[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=31681action=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=31689action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31681action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 gcc-bugzi...@gcc.gnu.org
 wrote:
 
 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 alhawiti am345166 at gmail dot com 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=31674action=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
gcc-bugzi...@gcc.gnu.org wrote:

 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 --- Comment #37 from 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31689action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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=31687action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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, 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31678action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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, 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31696action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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=31696action=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=31694action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31688action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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, 

[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=31692action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31698action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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=31691action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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, 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31699action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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, 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31700action=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 gcc-bugzi...@gcc.gnu.org
wrote:

 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 Dominique d'Humieres dominiq at lps dot ens.fr 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=31691action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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, 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31687action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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, 

[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=31702action=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=31707action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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=31698action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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 

[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 gcc-bugzi...@gcc.gnu.org
wrote:

 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966
 
 Dominique d'Humieres dominiq at lps dot ens.fr 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=31702action=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=31703action=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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

[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
gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org 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
 gcc-bugzi...@gcc.gnu.org wrote:
 
 

  1   2   3   >