gcc-4.9-20140105 is now available

2014-01-05 Thread gccadmin
Snapshot gcc-4.9-20140105 is now available on
  ftp://gcc.gnu.org/pub/gcc/snapshots/4.9-20140105/
and on various mirrors, see http://gcc.gnu.org/mirrors.html for details.

This snapshot has been generated from the GCC 4.9 SVN branch
with the following options: svn://gcc.gnu.org/svn/gcc/trunk revision 206348

You'll find:

 gcc-4.9-20140105.tar.bz2 Complete GCC

  MD5=9a5b1a6c76affaf92b9096a26dda9b71
  SHA1=cc4a375848dd2522580f0ba65139bababd0f566e

Diffs from 4.9-20131229 are available in the diffs/ subdirectory.

When a particular snapshot is ready for public consumption the LATEST-4.9
link is updated and a message is sent to the gcc list.  Please do not use
a snapshot before it has been announced that way.


Re: Remove spam in GCC mailing list

2014-01-05 Thread Christopher Faylor
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:
http://gcc.gnu.org/ml/gcc-bugs/2013-08/msg00689.html
http://gcc.gnu.org/ml/gcc-bugs/2013-08/msg00759.html
http://gcc.gnu.org/ml/gcc-bugs/2013-08/msg00776.html
http://gcc.gnu.org/ml/gcc-bugs/2013-08/msg01181.html
http://gcc.gnu.org/ml/gcc-bugs/2013-08/msg01586.html
http://gcc.gnu.org/ml/gcc-bugs/2013-09/msg01513.html
http://gcc.gnu.org/ml/gcc-bugs/2013-09/msg01946.html
http://gcc.gnu.org/ml/gcc-bugs/2013-09/msg01947.html
http://gcc.gnu.org/ml/gcc-bugs/2013-09/msg02011.html

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.

cgf


thread_local broken in gcc 4.8 ?

2014-01-05 Thread Conrad S
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

However, thread_local seems broken.  Let's say we compile a multi-file
program that uses thread_local:
g++ a.cpp -c -o a.o -std=c++11
g++ b.cpp -c -o b.o -std=c++11
g++ a.o b.o -o prog -std=c++11

We get the following error:
b.o: In function `TLS wrapper function for foo_instance':
b.cpp:(.text._ZTW12foo_instance[_ZTW12foo_instance]+0x5): undefined
reference to `TLS init function for foo_instance'
collect2: error: ld returned 1 exit status

gcc --version
gcc (GCC) 4.8.2 20131212 (Red Hat 4.8.2-7)


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;
  }


Finding a relevant place for a custom GCC pass

2014-01-05 Thread Sandeep K Chaudhary
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.

Thanks a lot in advance !

Regards,
Sandeep Chaudhary.


Re: Finding a relevant place for a custom GCC pass

2014-01-05 Thread Marc Glisse

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: Finding a relevant place for a custom GCC pass

2014-01-05 Thread Sandeep K Chaudhary
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, 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



-- 
Thanks and regards,
Sandeep K Chaudhary.


[Bug c++/59682] New: Invalid syntax accepted: new-placement without expression-list

2014-01-05 Thread frankhb1989 at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59682

Bug ID: 59682
   Summary: Invalid syntax accepted: new-placement without
expression-list
   Product: gcc
   Version: 4.8.2
Status: UNCONFIRMED
  Severity: minor
  Priority: P3
 Component: c++
  Assignee: unassigned at gcc dot gnu.org
  Reporter: frankhb1989 at gmail dot com

Minimal case:

int main()
{
int* p = new() int;
}

This should be invalid because as per the standard(ISO C++98/03/11) or the
current working draft of the standard(WG21/N3797), a new-placement should not
be '()':


[expr.new]/1
...
new-placement:
( expression-list )
...

There is no opt like postfix-expression ( expression-list opt), etc. And
the expression-list itself should be also a non-empty sequence of tokens.

G++ silently accepts the invalid code with or without
-pedantic-errors/-std=c++98/-std=c++03/-std=++11/-std=c++1y.

However, Clang++(trunk) rejects it correctly:

a.cc:4:14: error: expected expression
int* p = new() int;
 ^
1 error generated.


[Bug c++/59681] SVN 197248 adding N3582 support broke Boost.Regex with -std=c++1y

2014-01-05 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59681

Jonathan Wakely redi at gcc dot gnu.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Last reconfirmed||2014-01-05
 Ever confirmed|0   |1

--- Comment #2 from Jonathan Wakely redi at gcc dot gnu.org ---
[expr.prim.general] p6 says:

A parenthesized expression is a primary expression whose type and value are
identical to those of the enclosed expression. The presence of parentheses does
not affect whether the expression is an lvalue. The parenthesized expression can
be used in exactly the same contexts as those where the enclosed expression
can be used, and with the same meaning, except as otherwise indicated.

[Bug fortran/59678] Segmentation fault on equalizing variables of a complex derived data type

2014-01-05 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59678

janus at gcc dot gnu.org changed:

   What|Removed |Added

 CC||janus at gcc dot gnu.org

--- Comment #1 from janus at gcc dot gnu.org ---
Could you please try to set up a self-contained test case (as small as
possible)?


[Bug target/59683] New: ICE: in classify_argument, at config/i386/i386.c:6637 with #pragma GCC target(avx512f)

2014-01-05 Thread zsojka at seznam dot cz
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59683

Bug ID: 59683
   Summary: ICE: in classify_argument, at config/i386/i386.c:6637
with #pragma GCC target(avx512f)
   Product: gcc
   Version: 4.9.0
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: target
  Assignee: unassigned at gcc dot gnu.org
  Reporter: zsojka at seznam dot cz

Created attachment 31571
  -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=31571action=edit
reduced testcase

Compiler output:
$ gcc testcase.c 
testcase.c: In function 'bar':
testcase.c:16:1: internal compiler error: in classify_argument, at
config/i386/i386.c:6637
 {
 ^
0xddb0be classify_argument
/mnt/svn/gcc-trunk/gcc/config/i386/i386.c:6637
0xddb0d9 examine_argument
/mnt/svn/gcc-trunk/gcc/config/i386/i386.c:6660
0xde676a return_in_memory_64
/mnt/svn/gcc-trunk/gcc/config/i386/i386.c:7903
0xde676a ix86_return_in_memory
/mnt/svn/gcc-trunk/gcc/config/i386/i386.c:7935
0x8d83f4 aggregate_value_p(tree_node const*, tree_node const*)
/mnt/svn/gcc-trunk/gcc/function.c:2047
0x8df017 allocate_struct_function(tree_node*, bool)
/mnt/svn/gcc-trunk/gcc/function.c:4523
0x62a67f store_parm_decls()
/mnt/svn/gcc-trunk/gcc/c/c-decl.c:8454
0x6814ac c_parser_declaration_or_fndef
/mnt/svn/gcc-trunk/gcc/c/c-parser.c:1914
0x684d64 c_parser_external_declaration
/mnt/svn/gcc-trunk/gcc/c/c-parser.c:1399
0x685699 c_parser_translation_unit
/mnt/svn/gcc-trunk/gcc/c/c-parser.c:1286
0x685699 c_parse_file()
/mnt/svn/gcc-trunk/gcc/c/c-parser.c:14017
0x6d6fb3 c_common_parse_file()
/mnt/svn/gcc-trunk/gcc/c-family/c-opts.c:1060
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See http://gcc.gnu.org/bugs.html for instructions.


$ gcc -v 
Using built-in specs.
COLLECT_GCC=/mnt/svn/gcc-trunk/binary-latest/bin/gcc
COLLECT_LTO_WRAPPER=/mnt/svn/gcc-trunk/binary-206332-lto-fortran-checking-yes-rtl-df/libexec/gcc/x86_64-unknown-linux-gnu/4.9.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: /mnt/svn/gcc-trunk//configure --enable-checking=yes,rtl,df
--enable-languages=c,c++,lto,fortran
--prefix=/mnt/svn/gcc-trunk/binary-206332-lto-fortran-checking-yes-rtl-df/
--without-cloog --without-ppl
Thread model: posix
gcc version 4.9.0 20140104 (experimental) (GCC)


[Bug fortran/58586] [OOP] ICE with derived type with a polymorphic allocatable component passed by value

2014-01-05 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58586

Dominique d'Humieres dominiq at lps dot ens.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Last reconfirmed||2014-01-05
 Ever confirmed|0   |1


[Bug fortran/58557] [OOP] Issues with CLASS/TYPE functions in array constructors: reject valid, memory leaks, invalid free

2014-01-05 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58557

Dominique d'Humieres dominiq at lps dot ens.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Last reconfirmed||2014-01-05
 Ever confirmed|0   |1
  Known to fail||4.7.3, 4.8.2, 4.9.0


[Bug fortran/59678] Segmentation fault on equalizing variables of a complex derived data type

2014-01-05 Thread talebi.hossein at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59678

--- Comment #2 from Hossein Talebi talebi.hossein at gmail dot com ---

I tried but I could not get it with a simple test case. It will take me 1-2
full days until I reduce my code to a minimalistic example. I know you GCC guys
don't like this kind of error reporting; I understand; but I am quite busy too.
Let's find a compromise..


[Bug fortran/56660] Fails to read NAMELIST with certain form array syntax

2014-01-05 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56660

Dominique d'Humieres dominiq at lps dot ens.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |WAITING
   Last reconfirmed||2014-01-05
  Known to work||4.9.0
 Ever confirmed|0   |1
  Known to fail||4.7.3, 4.8.2

--- Comment #5 from Dominique d'Humieres dominiq at lps dot ens.fr ---
 Fixed on trunk. Shall we close this?  The type extension bug, PR56117 remains.

I guess it is PR55117. I think this PR should be closed if there is no plans to
back port the fix.


[Bug fortran/54223] Statement function statement with dummy arguments that are also OPTIONAL may crash in wrong calls

2014-01-05 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54223

Dominique d'Humieres dominiq at lps dot ens.fr changed:

   What|Removed |Added

   Keywords||ice-on-invalid-code
 Status|UNCONFIRMED |NEW
   Last reconfirmed||2014-01-05
 Ever confirmed|0   |1
  Known to fail|4.8.0   |4.8.2, 4.9.0

--- Comment #2 from Dominique d'Humieres dominiq at lps dot ens.fr ---
Still present at r206333.


[Bug fortran/58557] [OOP] Issues with CLASS/TYPE functions in array constructors: reject valid, memory leaks, invalid free

2014-01-05 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58557

--- Comment #2 from janus at gcc dot gnu.org ---
I think the conversion errors are simply due to declaration issues in the test
case, e.g.:

program main
  implicit none

   type t
   end type t

  interface
function f_type_na()
  import :: t
  type(t) :: f_type
end function
  end interface

  type(t) :: b

  b = f_type_na()

end program


  b = f_type_na()
  1
Error: Can't convert REAL(4) to TYPE(t) at (1)


But the following variant yields a different error:

program main
  implicit none

   type t
   end type t

  type(t) :: b

  b = f_type_na()

contains

  function f_type_na()
type(t) :: f_type
  end function

end program


  function f_type_na()
  1
Error: Contained function 'f_type_na' at (1) has no IMPLICIT type
c0.f90:11.6:

  b = f_type_na()
  1
Error: Can't convert UNKNOWN to TYPE(t) at (1)



Apparently we apply implicit typing to the INTERFACE version (although IMPLICIT
NONE is given).


[Bug middle-end/53714] false positive for -Wuninitialized

2014-01-05 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53714

Dominique d'Humieres dominiq at lps dot ens.fr changed:

   What|Removed |Added

   Keywords||diagnostic
 Status|UNCONFIRMED |NEW
   Last reconfirmed||2014-01-05
  Component|fortran |middle-end
 Ever confirmed|0   |1
  Known to fail||4.7.3, 4.8.2, 4.9.0

--- Comment #1 from Dominique d'Humieres dominiq at lps dot ens.fr ---
Still present at r206333. I think it is a middle-end issue.


[Bug fortran/59678] Segmentation fault on equalizing variables of a complex derived data type

2014-01-05 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59678

--- Comment #3 from janus at gcc dot gnu.org ---
(In reply to Hossein Talebi from comment #2)
 I tried but I could not get it with a simple test case. It will take me 1-2
 full days until I reduce my code to a minimalistic example.

A gfortran developer who is not familiar with your code would probably need
even more time than you to do this.


 I know you GCC
 guys don't like this kind of error reporting; I understand; but I am quite
 busy too. Let's find a compromise..

I tried to build your full code and got errors like this:

gfortran: error: ../../externals/lib_LNX64_SRL_GCC4.63/libmpiseq.a: No such
file or directory

If you expect that anyone looks into the problem, you will have to provide a
self-contained and reproducible test case. Simple as that.


[Bug fortran/58557] [OOP] Issues with CLASS/TYPE functions in array constructors: reject valid, memory leaks, invalid free

2014-01-05 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58557

janus at gcc dot gnu.org changed:

   What|Removed |Added

   Keywords|rejects-valid   |ice-on-valid-code

--- Comment #3 from janus at gcc dot gnu.org ---
Here is a 'corrected' version of the test case:

program main
  implicit none

   type t
   end type t

  interface
function f_type()
  import :: t
  type(t), allocatable :: f_type
end function
function f_type_na()
  import :: t
  type(t) :: f_type_na
end function
function f_type_array()
  import :: t
  type(t), allocatable :: f_type_array(:)
end function
function f_type_array_na()
  import :: t
  type(t) :: f_type_array_na(5)
end function
function f_class(i)
  import :: t
  class(t), allocatable :: f_class
  integer :: i
end function
function f_class_array(i)
  import :: t
  class(t), allocatable :: f_class_array(:)
  integer :: i
end function
subroutine sub_type2(x)
  import :: t
  type(t) :: x(:)
end subroutine
subroutine sub_class2(x)
  import :: t
  class(t) :: x(:)
end subroutine
  end interface

  type(t) :: b(1)
  integer :: i

  b = [ f_type() ]
  b = [ f_type_na() ]
  b = [ f_type_array() ]
  b = [ f_type_array_na() ]
  b = [ f_class_array(1) ]
  call sub_type2([f_class(1)])
  call sub_type2([f_class_array(1)])
  call sub_type2([(f_class(i),i=1,5)])
  call sub_type2([(f_class_array(i),i=1,5)])
  call sub_class2([f_class(1)])
  call sub_class2([f_class_array(1)])
  call sub_class2([(f_class(i),i=1,5)])
  call sub_class2([(f_class_array(i),i=1,5)])
end program main


which yields with 4.9 trunk:

c0.f90:51:0: internal compiler error: in gfc_trans_array_constructor_subarray,
at fortran/trans-array.c:1472
   b = [ f_class_array(1) ]
 ^
0x63078f gfc_trans_array_constructor_subarray
/home/jweil/gcc49/trunk/gcc/fortran/trans-array.c:1472
0x63078f gfc_trans_array_constructor_value
/home/jweil/gcc49/trunk/gcc/fortran/trans-array.c:1601
0x62f216 trans_array_constructor
/home/jweil/gcc49/trunk/gcc/fortran/trans-array.c:2323
0x62f216 gfc_add_loop_ss_code
/home/jweil/gcc49/trunk/gcc/fortran/trans-array.c:2558
0x62f955 gfc_conv_loop_setup(gfc_loopinfo*, locus*)
/home/jweil/gcc49/trunk/gcc/fortran/trans-array.c:4683
0x64c001 gfc_trans_assignment_1
/home/jweil/gcc49/trunk/gcc/fortran/trans-expr.c:7913
0x61e795 trans_code
/home/jweil/gcc49/trunk/gcc/fortran/trans.c:1623
0x63dee2 gfc_generate_function_code(gfc_namespace*)
/home/jweil/gcc49/trunk/gcc/fortran/trans-decl.c:5605
0x5de510 translate_all_program_units
/home/jweil/gcc49/trunk/gcc/fortran/parse.c:4536
0x5de510 gfc_parse_file()
/home/jweil/gcc49/trunk/gcc/fortran/parse.c:4733
0x61adb5 gfc_be_parse_file
/home/jweil/gcc49/trunk/gcc/fortran/f95-lang.c:188
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See http://gcc.gnu.org/bugs.html for instructions.


[Bug target/59685] New: ICE: in output_2305, at config/i386/sse.md:8919 with -march=bdver1 -mavx512f

2014-01-05 Thread zsojka at seznam dot cz
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59685

Bug ID: 59685
   Summary: ICE: in output_2305, at config/i386/sse.md:8919 with
-march=bdver1 -mavx512f
   Product: gcc
   Version: 4.9.0
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: target
  Assignee: unassigned at gcc dot gnu.org
  Reporter: zsojka at seznam dot cz

Created attachment 31573
  -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=31573action=edit
reduced testcase

Compiler output:
$ gcc -march=bdver1 -mavx512f testcase.c
testcase.c: In function 'foo':
testcase.c:7:1: internal compiler error: in output_2305, at
config/i386/sse.md:8919
 }
 ^
0xfffaf3 output_2305
/mnt/svn/gcc-trunk/gcc/config/i386/sse.md:8919
0x8702f5 final_scan_insn(rtx_def*, _IO_FILE*, int, int, int*)
/mnt/svn/gcc-trunk/gcc/final.c:2929
0x8719e5 final(rtx_def*, _IO_FILE*, int)
/mnt/svn/gcc-trunk/gcc/final.c:2024
0x871f0e rest_of_handle_final
/mnt/svn/gcc-trunk/gcc/final.c:4438
0x871f0e execute
/mnt/svn/gcc-trunk/gcc/final.c:4513
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See http://gcc.gnu.org/bugs.html for instructions.


$ gcc -v
Using built-in specs.
COLLECT_GCC=/mnt/svn/gcc-trunk/binary-latest/bin/gcc
COLLECT_LTO_WRAPPER=/mnt/svn/gcc-trunk/binary-206332-lto-fortran-checking-yes-rtl-df/libexec/gcc/x86_64-unknown-linux-gnu/4.9.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: /mnt/svn/gcc-trunk//configure --enable-checking=yes,rtl,df
--enable-languages=c,c++,lto,fortran
--prefix=/mnt/svn/gcc-trunk/binary-206332-lto-fortran-checking-yes-rtl-df/
--without-cloog --without-ppl
Thread model: posix
gcc version 4.9.0 20140104 (experimental) (GCC)


[Bug fortran/58586] ICE with derived type with allocatable component passed by value

2014-01-05 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58586

janus at gcc dot gnu.org changed:

   What|Removed |Added

Summary|[OOP] ICE with derived type |ICE with derived type with
   |with a polymorphic  |allocatable component
   |allocatable component   |passed by value
   |passed by value |

--- Comment #2 from janus at gcc dot gnu.org ---
Reduced test case with the same ICE:


module mod

  type :: a
  end type

  type :: b
 type(a), allocatable :: a
  end type

contains

  subroutine add (c)
type(b), value :: c
  end subroutine

  type(b) function b_init()
  end function

end module


   use mod
   call add(b_init())
end


The component does not have to be polymorphic to trigger the error.


[Bug fortran/58586] ICE with derived type with allocatable component passed by value

2014-01-05 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58586

--- Comment #3 from janus at gcc dot gnu.org ---
Further reduction:


  type :: b
 integer, allocatable :: a
  end type

  call add(b(null()))

contains

  subroutine add (c)
type(b), value :: c
  end subroutine

end


[Bug sanitizer/59667] ubsan: ICE ubsan_type_descriptor

2014-01-05 Thread mpolacek at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59667

Marek Polacek mpolacek at gcc dot gnu.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Last reconfirmed||2014-01-05
 CC||mpolacek at gcc dot gnu.org
   Assignee|unassigned at gcc dot gnu.org  |mpolacek at gcc dot 
gnu.org
   Target Milestone|--- |4.9.0
 Ever confirmed|0   |1

--- Comment #1 from Marek Polacek mpolacek at gcc dot gnu.org ---
Mine.  Another instance of segv in getting the type name.


[Bug fortran/59678] Segmentation fault on equalizing variables of a complex derived data type

2014-01-05 Thread talebi.hossein at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59678

--- Comment #4 from Hossein Talebi talebi.hossein at gmail dot com ---
Created attachment 31574
  -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=31574action=edit
test case, permix.f90 and the external

Please replace the contents of permix.f90 with this below. Put the attached
libmpiseq.a into  permix_home/externals/lib_LNX64_SRL_GCC4.63/  . Compile
again. It should be fine now. The executable will be in the permix_home/bin
folder. If this did not work, I will generate a test case next week. 


program permix

   use permix_cmd_handling_mod
   use prx_class, only: ty_prx
   implicit none

   ! ty_prx is a complex derived data type
   type(ty_prx) :: prx, prx2


   ! initializing prx
   Call prx_init(prx,0,'mylog')

   ! running a simulation with giving an input
   call prx%input%job('../verif/Test1/linearelastic_nonsolver.prx ')

   ! prininting a part of the data
   print *,prx%parts%parts_fem(1)%OBJ%femmesh%X

   prx2=prx ! ERROR: Segmentation fault occurs here

end program permix


[Bug lto/59684] lto1: internal compiler error: bytecode stream: expected tag real_type instead of error_mark

2014-01-05 Thread nheghathivhistha at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59684

--- Comment #1 from David Kredba nheghathivhistha at gmail dot com ---
After I rebuilt Vc library using the same compiler it stopped to ICE.
Instead it reports

/usr/include/Vc/version.h:45: error: undefined reference to
'Vc::checkLibraryAbi(unsigned int, unsigned int, char const*)'
/usr/include/Vc/version.h:45: error: undefined reference to
'Vc::checkLibraryAbi(unsigned int, unsigned int, char const*)'
/var/tmp/portage/app-office/calligra-2.7.5/work/calligra-2.7.5/libs/pigment/compositeops/KoStreamedMath.h:256:
error: undefined reference to 'Vc::SSE::c_general::oneFloat'
/var/tmp/portage/app-office/calligra-2.7.5/work/calligra-2.7.5/libs/pigment/compositeops/KoStreamedMath.h:256:
error: undefined reference to 'Vc::SSE::c_general::oneFloat'
/var/tmp/portage/app-office/calligra-2.7.5/work/calligra-2.7.5/libs/pigment/compositeops/KoStreamedMath.h:266:
error: undefined reference to 'Vc::SSE::c_general::oneFloat'
/var/tmp/portage/app-office/calligra-2.7.5/work/calligra-2.7.5/libs/pigment/compositeops/KoStreamedMath.h:266:
error: undefined reference to 'Vc::SSE::c_general::oneFloat'
/usr/include/Vc/version.h:45: error: undefined reference to
'Vc::checkLibraryAbi(unsigned int, unsigned int, char const*)'
collect2: error: ld returned 1 exit status

at link time.


[Bug lto/59684] lto1: internal compiler error: bytecode stream: expected tag real_type instead of error_mark

2014-01-05 Thread nheghathivhistha at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59684

--- Comment #2 from David Kredba nheghathivhistha at gmail dot com ---
gcc-nm -C /usr/lib64/libVc.a 

const.cpp.o:
 T Vc::RandomState
 T Vc::checkLibraryAbi(unsigned int, unsigned int, char const*)
 T Vc::AVX::_IndexesFromZero8
 T Vc::AVX::_IndexesFromZero16
 T Vc::AVX::_IndexesFromZero32
 T Vc::AVX::c_logdouble::data
 T Vc::AVX::c_logfloat::data
 T Vc::AVX::c_trigdouble::data
 T Vc::AVX::c_trigfloat::data
 T Vc::AVX::c_general::absMaskFloat
 T Vc::AVX::c_general::highMaskFloat
 T Vc::AVX::c_general::signMaskFloat
 T Vc::AVX::c_general::highMaskDouble
 T Vc::AVX::c_general::one16
 T Vc::AVX::c_general::minShort
 T Vc::AVX::c_general::oneFloat
 T Vc::AVX::c_general::frexpMask
 T Vc::AVX::c_general::oneDouble
 T Vc::AVX::c_general::_2power31
 T Vc::SSE::_IndexesFromZero4
 T Vc::SSE::_IndexesFromZero8
 T Vc::SSE::_IndexesFromZero16
 T Vc::SSE::c_logdouble::data
 T Vc::SSE::c_logfloat::data
 T Vc::SSE::c_trigdouble::data
 T Vc::SSE::c_trigfloat::data
 T Vc::SSE::c_general::absMaskFloat
 T Vc::SSE::c_general::absMaskDouble
 T Vc::SSE::c_general::highMaskFloat
 T Vc::SSE::c_general::signMaskFloat
 T Vc::SSE::c_general::highMaskDouble
 T Vc::SSE::c_general::signMaskDouble
 T Vc::SSE::c_general::one16
 T Vc::SSE::c_general::one32
 T Vc::SSE::c_general::minShort
 T Vc::SSE::c_general::oneFloat
 T Vc::SSE::c_general::frexpMask
 T Vc::SSE::c_general::oneDouble
 T Vc::Warnings::_operator_bracket_warning()

cpuid.cpp.o:
 T Vc::CpuId::s_noL2orL3
 T Vc::CpuId::s_prefetch
 T Vc::CpuId::s_brandIndex
 T Vc::CpuId::s_cacheLineSize
 T Vc::CpuId::s_L1Instruction
 T Vc::CpuId::s_processorType
 T Vc::CpuId::s_L1DataLineSize
 T Vc::CpuId::s_L2DataLineSize
 T Vc::CpuId::s_L3DataLineSize
 T Vc::CpuId::s_processorModel
 T Vc::CpuId::s_L1Associativity
 T Vc::CpuId::s_L2Associativity
 T Vc::CpuId::s_L3Associativity
 T Vc::CpuId::s_processorFamily
 T Vc::CpuId::s_logicalProcessors
 T Vc::CpuId::s_processorFeaturesC
 T Vc::CpuId::s_processorFeaturesD
 T Vc::CpuId::s_processorFeatures8C
 T Vc::CpuId::s_processorFeatures8D
 T Vc::CpuId::s_L1InstructionLineSize
 T Vc::CpuId::init()
 T Vc::CpuId::s_ecx0
 T Vc::CpuId::s_L1Data
 T Vc::CpuId::s_L2Data
 T Vc::CpuId::s_L3Data
 T Vc::CpuId::interpret(unsigned char, bool*)

support.cpp.o:
 T Vc::isImplementationSupported(Vc::Implementation)
 T Vc::extraInstructionsSupported()
 T Vc::bestImplementationSupported()
 U Vc::CpuId::s_processorFeaturesC
 U Vc::CpuId::s_processorFeaturesD
 U Vc::CpuId::s_processorFeatures8C
 U Vc::CpuId::init()

avx_sorthelper.cpp.o:
 T Vc::AVX::SortHelperdouble::sort(double __vector(4))
 T Vc::AVX::SortHelperdouble::sort(double __vector(4), double
__vector(4))
 T Vc::AVX::SortHelperfloat::sort(float __vector(8))
 T Vc::AVX::SortHelperint::sort(long long __vector(4))
 T Vc::AVX::SortHelperunsigned int::sort(long long __vector(4))
 T Vc::AVX::SortHelperVc::sfloat::sort(float __vector(8))
 T Vc::AVX::SortHelpershort::sort(long long __vector(2))
 T Vc::AVX::SortHelperunsigned short::sort(long long __vector(2))

trigonometric_SSE2.cpp.o:
 U __assert_fail
 U __cxa_atexit
 U __dso_handle
 U std::ios_base::Init::Init()
 U std::ios_base::Init::~Init()
 T Vc::SSE::Vectordouble Vc::TrigonometricVc::ImplementationT1u
::cosdouble(Vc::SSE::Vectordouble const)
 W Vc::SSE::Vectorfloat Vc::TrigonometricVc::ImplementationT1u
::cosfloat(Vc::SSE::Vectorfloat const)
 W Vc::SSE::VectorVc::sfloat
Vc::TrigonometricVc::ImplementationT1u
::cosVc::sfloat(Vc::SSE::VectorVc::sfloat const)
 T Vc::SSE::Vectordouble Vc::TrigonometricVc::ImplementationT1u
::sindouble(Vc::SSE::Vectordouble const)
 W Vc::SSE::Vectorfloat Vc::TrigonometricVc::ImplementationT1u
::sinfloat(Vc::SSE::Vectorfloat const)
 W Vc::SSE::VectorVc::sfloat
Vc::TrigonometricVc::ImplementationT1u
::sinVc::sfloat(Vc::SSE::VectorVc::sfloat const)
 T Vc::SSE::Vectordouble Vc::TrigonometricVc::ImplementationT1u
::asindouble(Vc::SSE::Vectordouble const)
 W Vc::SSE::Vectorfloat Vc::TrigonometricVc::ImplementationT1u
::asinfloat(Vc::SSE::Vectorfloat const)
 W Vc::SSE::VectorVc::sfloat
Vc::TrigonometricVc::ImplementationT1u
::asinVc::sfloat(Vc::SSE::VectorVc::sfloat const)
 T Vc::SSE::Vectordouble Vc::TrigonometricVc::ImplementationT1u

[Bug lto/59684] lto1: internal compiler error: bytecode stream: expected tag real_type instead of error_mark

2014-01-05 Thread nheghathivhistha at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59684

--- Comment #3 from David Kredba nheghathivhistha at gmail dot com ---
When libVc built without -flto Calligra can be built without -flto too.

nm -C /usr/lib64/libVc.a 

const.cpp.o:
 U abort
 U _GLOBAL_OFFSET_TABLE_
 r .LC1
 U printf
 r Vc::LIBRARY_VERSION
 D Vc::RandomState
0010 T Vc::checkLibraryAbi(unsigned int, unsigned int, char const*)
1060 R Vc::AVX::_IndexesFromZero8
1070 R Vc::AVX::_IndexesFromZero16
1080 R Vc::AVX::_IndexesFromZero32
0c80 R Vc::AVX::c_logdouble::data
0c00 R Vc::AVX::c_logfloat::data
0e80 R Vc::AVX::c_trigdouble::data
0d80 R Vc::AVX::c_trigfloat::data
0d5c R Vc::AVX::c_general::absMaskFloat
0d50 R Vc::AVX::c_general::highMaskFloat
0d54 R Vc::AVX::c_general::signMaskFloat
0d38 R Vc::AVX::c_general::highMaskDouble
0d44 R Vc::AVX::c_general::one16
0d48 R Vc::AVX::c_general::minShort
0d4c R Vc::AVX::c_general::oneFloat
0d28 R Vc::AVX::c_general::frexpMask
0d30 R Vc::AVX::c_general::oneDouble
0d40 R Vc::AVX::c_general::_2power31
0b40 R Vc::SSE::_IndexesFromZero4
0b50 R Vc::SSE::_IndexesFromZero8
0310 R Vc::SSE::_IndexesFromZero16
01c0 R Vc::SSE::c_logdouble::data
0040 R Vc::SSE::c_logfloat::data
0700 R Vc::SSE::c_trigdouble::data
0340 R Vc::SSE::c_trigfloat::data
0bc0 R Vc::SSE::c_general::absMaskFloat
0ae0 R Vc::SSE::c_general::absMaskDouble
0b70 R Vc::SSE::c_general::highMaskFloat
0b80 R Vc::SSE::c_general::signMaskFloat
0b00 R Vc::SSE::c_general::highMaskDouble
0ad0 R Vc::SSE::c_general::signMaskDouble
0b30 R Vc::SSE::c_general::one16
0b20 R Vc::SSE::c_general::one32
0b60 R Vc::SSE::c_general::minShort 
0b10 R Vc::SSE::c_general::oneFloat 
0ac0 R Vc::SSE::c_general::frexpMask
0af0 R Vc::SSE::c_general::oneDouble
 T Vc::Warnings::_operator_bracket_warning()

cpuid.cpp.o:
0400 r CSWTCH.42
 U _GLOBAL_OFFSET_TABLE_
 B Vc::CpuId::s_noL2orL3
0004 D Vc::CpuId::s_prefetch
0004 B Vc::CpuId::s_brandIndex
0003 B Vc::CpuId::s_cacheLineSize
0028 B Vc::CpuId::s_L1Instruction
 D Vc::CpuId::s_processorType
0018 B Vc::CpuId::s_L1DataLineSize
0016 B Vc::CpuId::s_L2DataLineSize
0014 B Vc::CpuId::s_L3DataLineSize
0002 B Vc::CpuId::s_processorModel
0010 B Vc::CpuId::s_L1Associativity
000c B Vc::CpuId::s_L2Associativity
0008 B Vc::CpuId::s_L3Associativity
0001 B Vc::CpuId::s_processorFamily
003c B Vc::CpuId::s_logicalProcessors
0038 B Vc::CpuId::s_processorFeaturesC
0034 B Vc::CpuId::s_processorFeaturesD
0030 B Vc::CpuId::s_processorFeatures8C
002c B Vc::CpuId::s_processorFeatures8D
001a B Vc::CpuId::s_L1InstructionLineSize
09e0 T Vc::CpuId::init()
0040 B Vc::CpuId::s_ecx0
0024 B Vc::CpuId::s_L1Data
0020 B Vc::CpuId::s_L2Data
001c B Vc::CpuId::s_L3Data
 T Vc::CpuId::interpret(unsigned char, bool*)
0044 b Vc::CpuId::init()::done

support.cpp.o:
 U _GLOBAL_OFFSET_TABLE_
 T Vc::isImplementationSupported(Vc::Implementation)
0160 T Vc::extraInstructionsSupported()
00e0 T Vc::bestImplementationSupported()
 U Vc::CpuId::s_processorFeaturesC
 U Vc::CpuId::s_processorFeaturesD
 U Vc::CpuId::s_processorFeatures8C
 U Vc::CpuId::init()

avx_sorthelper.cpp.o:
 U _GLOBAL_OFFSET_TABLE_
03b0 T Vc::AVX::SortHelperdouble::sort(double __vector(4))
0330 T Vc::AVX::SortHelperdouble::sort(double __vector(4),
double __vector(4))
02a0 T Vc::AVX::SortHelperfloat::sort(float __vector(8))
0120 T Vc::AVX::SortHelperint::sort(long long __vector(4))
01e0 T Vc::AVX::SortHelperunsigned int::sort(long long
__vector(4))
0320 T Vc::AVX::SortHelperVc::sfloat::sort(float __vector(8))
 T Vc::AVX::SortHelpershort::sort(long long __vector(2))
0090 T Vc::AVX::SortHelperunsigned short::sort(long long
__vector(2))

trigonometric_SSE2.cpp.o:
 U 

[Bug fortran/59678] Segmentation fault on equalizing variables of a complex derived data type

2014-01-05 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59678

Dominique d'Humieres dominiq at lps dot ens.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |WAITING
   Last reconfirmed||2014-01-05
 Ever confirmed|0   |1

--- Comment #5 from Dominique d'Humieres dominiq at lps dot ens.fr ---
After providing the link to the openmpi library, the executable is generated
but fails at runtime with:

[Book15] permix_home/src% ../bin/permix_minimal_serial
*** The MPI_Comm_f2c() function was called before MPI_INIT was invoked.
*** This is disallowed by the MPI standard.
*** Your MPI job will now abort.
[Book15.local:34330] Local abort before MPI_INIT completed successfully; not
able to aggregate error messages, and not able to guarantee that all other
processes were killed!

BTW I don't understand why serial make needs mpi stuff.


[Bug lto/59684] lto1: internal compiler error: bytecode stream: expected tag real_type instead of error_mark

2014-01-05 Thread nheghathivhistha at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59684

--- Comment #4 from David Kredba nheghathivhistha at gmail dot com ---
It does not build later (without lto).


CMakeFiles/calligrasheetscommon.dir/commands/ConditionCommand.cpp.o: In
function `Calligra::Sheets::Conditions::operator(Calligra::Sheets::Conditions
const) const':
/var/tmp/portage/app-office/calligra-2.7.5/work/calligra-2.7.5/sheets/Condition.h:170:
undefined reference to `Calligra::Sheets::qHash(Calligra::Sheets::Conditions
const)'
/var/tmp/portage/app-office/calligra-2.7.5/work/calligra-2.7.5/sheets/Condition.h:170:
undefined reference to `Calligra::Sheets::qHash(Calligra::Sheets::Conditions
const)'
/var/tmp/portage/app-office/calligra-2.7.5/work/calligra-2.7.5/sheets/Condition.h:170:
undefined reference to `Calligra::Sheets::qHash(Calligra::Sheets::Conditions
const)'
/var/tmp/portage/app-office/calligra-2.7.5/work/calligra-2.7.5/sheets/Condition.h:170:
undefined reference to `Calligra::Sheets::qHash(Calligra::Sheets::Conditions
const)'
/var/tmp/portage/app-office/calligra-2.7.5/work/calligra-2.7.5/sheets/Condition.h:170:
undefined reference to `Calligra::Sheets::qHash(Calligra::Sheets::Conditions
const)'
CMakeFiles/calligrasheetscommon.dir/commands/ConditionCommand.cpp.o:/var/tmp/portage/app-office/calligra-2.7.5/work/calligra-2.7.5/sheets/Condition.h:170:
more undefined references to
`Calligra::Sheets::qHash(Calligra::Sheets::Conditions const)' follow
collect2: error: ld returned 1 exit status
sheets/CMakeFiles/calligrasheetscommon.dir/build.make:3108: recipe for target
'lib/libcalligrasheetscommon.so.12.0.0' failed

I am going to try gcc-4.8.2 no lto build.


[Bug c++/59686] New: Non-constexpr pointers accepted in constant expressions

2014-01-05 Thread ville.voutilainen at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59686

Bug ID: 59686
   Summary: Non-constexpr pointers accepted in constant
expressions
   Product: gcc
   Version: 4.9.0
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: c++
  Assignee: unassigned at gcc dot gnu.org
  Reporter: ville.voutilainen at gmail dot com

int main
{
static const int x = 5;
const int * const y = x;
static_assert(y, );
}

clang rejects this, gcc accepts.


[Bug c++/59686] Non-constexpr pointers accepted in constant expressions

2014-01-05 Thread ville.voutilainen at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59686

--- Comment #1 from Ville Voutilainen ville.voutilainen at gmail dot com ---
(In reply to Ville Voutilainen from comment #0)
 int main
 {
 static const int x = 5;
 const int * const y = x;
 static_assert(y, );
 }
 
 clang rejects this, gcc accepts.

well, typo, should be int main(), of course... in other words,

int main()
{
static const int x = 5;
const int * const y = x;
static_assert(y, );
}


[Bug fortran/59678] Segmentation fault on equalizing variables of a complex derived data type

2014-01-05 Thread talebi.hossein at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59678

--- Comment #6 from Hossein Talebi talebi.hossein at gmail dot com ---
Thank you for trying it. Please spend 5 minutes to read and follow this. I
have attached a zip files in proper folder which you have to overwrite to
your local copy of PERMIX. I have modified the these to make it easy to
compile and test.

Method 1)

You have OpenMPI or another mpi library and you want to compile PERMIX with
it. After you overwrote the Makefile.minimal_mpi in the src/MAKE, just go
to permix_home/src and type 'make minimal_mpi'.
This will only need mpif90, mpicc and mpic++ to compile.

That error you reported happened because you have not initialized MPI.
Maybe if you add MPI initialization commands it will fix. But, I have
updated the new permix.f90 with these commands and you just replace it.

Method 2)
You want to compile PERMIX in a full serial version. This case you need to
supply some dummy MPI functions which are located in permix_home/src/STUBS
folder. I have precompiled them (in the attached file,
permix_home/externals/libmpiseq.a ). In case you have to compile
libmpiseq.a by yourself go to permix_home/src/STUBS and run  'build.sh'
which is the simplest way of compiling and linking in Linux.

So, when you have the libmpiseq.a in the right place go to src folder and
type 'make minimal_serial' .


Please do not forget to replace every single file that I attached now,
otherwise it won't work.

Cheers
Hossein











On Sun, Jan 5, 2014 at 4:45 PM, dominiq at lps dot ens.fr 
gcc-bugzi...@gcc.gnu.org wrote:

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

 Dominique d'Humieres dominiq at lps dot ens.fr changed:

What|Removed |Added

 
  Status|UNCONFIRMED |WAITING
Last reconfirmed||2014-01-05
  Ever confirmed|0   |1

 --- Comment #5 from Dominique d'Humieres dominiq at lps dot ens.fr ---
 After providing the link to the openmpi library, the executable is
 generated
 but fails at runtime with:

 [Book15] permix_home/src% ../bin/permix_minimal_serial
 *** The MPI_Comm_f2c() function was called before MPI_INIT was invoked.
 *** This is disallowed by the MPI standard.
 *** Your MPI job will now abort.
 [Book15.local:34330] Local abort before MPI_INIT completed successfully;
 not
 able to aggregate error messages, and not able to guarantee that all other
 processes were killed!

 BTW I don't understand why serial make needs mpi stuff.

 --
 You are receiving this mail because:
 You are on the CC list for the bug.
 You reported the bug.



[Bug fortran/55932] [F03] ICE for structure constructor with scalar allocatable component

2014-01-05 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55932

janus at gcc dot gnu.org changed:

   What|Removed |Added

   Keywords||ice-on-valid-code
 CC||janus at gcc dot gnu.org
Summary|DDT's default structure |[F03] ICE for structure
   |constructor does not work   |constructor with scalar
   |with having allocatable |allocatable component
   |member variables|

--- Comment #3 from janus at gcc dot gnu.org ---
Slightly compactified test case:

  IMPLICIT NONE 
  TYPE :: test_typ
  REAL, ALLOCATABLE :: a
  END TYPE
  TYPE(test_typ) :: my_test_typ
  my_test_typ = test_typ(1.0)
END


The backtrace with 4.9 trunk is:


internal compiler error: in fold_convert_loc, at fold-const.c:1994
   my_test_typ = test_typ(1.0)
 ^
0x7969df fold_convert_loc(unsigned int, tree_node*, tree_node*)
/home/jweil/gcc49/trunk/gcc/fold-const.c:1993
0x6429c2 gfc_trans_scalar_assign(gfc_se*, gfc_se*, gfc_typespec, bool, bool,
bool)
/home/jweil/gcc49/trunk/gcc/fortran/trans-expr.c:6991
0x648b8f gfc_trans_subcomponent_assign
/home/jweil/gcc49/trunk/gcc/fortran/trans-expr.c:6052
0x648b8f gfc_trans_structure_assign
/home/jweil/gcc49/trunk/gcc/fortran/trans-expr.c:6099
0x649ad2 gfc_conv_structure(gfc_se*, gfc_expr*, int)
/home/jweil/gcc49/trunk/gcc/fortran/trans-expr.c:6126
0x64769c gfc_conv_expr(gfc_se*, gfc_expr*)
/home/jweil/gcc49/trunk/gcc/fortran/trans-expr.c:6285
0x64c0c6 gfc_trans_assignment_1
/home/jweil/gcc49/trunk/gcc/fortran/trans-expr.c:7946
0x61e795 trans_code
/home/jweil/gcc49/trunk/gcc/fortran/trans.c:1623
0x63dee2 gfc_generate_function_code(gfc_namespace*)
/home/jweil/gcc49/trunk/gcc/fortran/trans-decl.c:5605
0x5de510 translate_all_program_units
/home/jweil/gcc49/trunk/gcc/fortran/parse.c:4536
0x5de510 gfc_parse_file()
/home/jweil/gcc49/trunk/gcc/fortran/parse.c:4733
0x61adb5 gfc_be_parse_file
/home/jweil/gcc49/trunk/gcc/fortran/f95-lang.c:188


[Bug fortran/55932] [F03] ICE for structure constructor with scalar allocatable component

2014-01-05 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55932

--- Comment #4 from janus at gcc dot gnu.org ---
Allocation-on-assignment works for 'normal' assignments of allocatable scalars,
as shown by this test case:


  IMPLICIT NONE
  TYPE :: test_typ
  REAL, ALLOCATABLE :: a
  END TYPE
  TYPE(test_typ) :: my_test_typ
  my_test_typ%a = 1.
  print *, my_test_typ%a 
END


We just have to make it work for structure constructors.


[Bug ada/59671] Improper Ada behavior under -gnat2012

2014-01-05 Thread p-kell at live dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59671

Patrick Kelly p-kell at live dot com changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|DUPLICATE   |---

--- Comment #2 from Patrick Kelly p-kell at live dot com ---
Exactly why I marked this as blocker. There is no workaround. -gnat2012 will
not compile properly, plain and simple. Adding out to a parameter of a
function results in this error. Stepping back to -gnat2005 is not a workaround,
it's moving to a different language; it's a less severe form of moving from,
say Ada to ALGOL.

I disagree with this being a duplicate, as the problem in that report, which I
read prior to filing this one, is an issue with pragmas behavior, while this is
with out parameters of functions; these are not the same thing. Two different
issues are reporting the same error message; the error message is what is
common, not the error.


[Bug fortran/55932] [F03] ICE for structure constructor with scalar allocatable component

2014-01-05 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55932

--- Comment #5 from janus at gcc dot gnu.org ---
The following is sufficient to get rid of the ICE:

Index: gcc/fortran/trans-expr.c
===
--- gcc/fortran/trans-expr.c(revision 206335)
+++ gcc/fortran/trans-expr.c(working copy)
@@ -6049,6 +6049,8 @@ gfc_trans_subcomponent_assign (tree dest, gfc_comp
   if (cm-ts.type == BT_CHARACTER)
 lse.string_length = cm-ts.u.cl-backend_decl;
   lse.expr = dest;
+  if (cm-attr.allocatable)
+lse.expr = build_fold_indirect_ref_loc (input_location, lse.expr);
   tmp = gfc_trans_scalar_assign (lse, se, cm-ts, true, false, true);
   gfc_add_expr_to_block (block, tmp);
 }


With this patch, the test case in comment 3 compiles without error. However, it
now segfaults at runtime, because alloc-on-assignment is still missing.


[Bug libstdc++/59687] New: The description of ios::noreplace is hilarious

2014-01-05 Thread giecrilj at stegny dot 2a.pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59687

Bug ID: 59687
   Summary: The description of ios::noreplace is hilarious
   Product: gcc
   Version: 4.8.1
Status: UNCONFIRMED
  Severity: major
  Priority: P3
 Component: libstdc++
  Assignee: unassigned at gcc dot gnu.org
  Reporter: giecrilj at stegny dot 2a.pl

The page Backwards Compatibility [1] says:

 For output streams, “nocreate” is probably the default, unless you specify 
 std::ios::trunc ?

Probably???  Could you please estimate the probability?
Also inconsistent with the table at filebuf::open that does not mention x
mode to be actually used.

 To be safe, you can open the file for reading, check if it has been opened, 
 and then decide whether you want to create/replace or not.

This may be true when there is only one process and one thread; otherwise it is
blatant disinformation and wishful thinking — see the page C++ TOCTOU
Vulnerability in the CERT Secure Coding Manual [2].

___
[1] URL:
http://gcc.gnu.org/onlinedocs/libstdc++/manual/backwards.html#backwards.third.nocreate_noreplace
 
[2] URL:
https://www.securecoding.cert.org/confluence/download/attachments/40402999/09%20Race%20Conditions.pdf


[Bug c++/59681] SVN 197248 adding N3582 support broke Boost.Regex with -std=c++1y

2014-01-05 Thread pab at pabigot dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59681

--- Comment #3 from Peter A. Bigot pab at pabigot dot com ---
But also note [dcl.type.simple] p4:

The type denoted by decltype(e) is defined as follows:
— if e is an unparenthesized id-expression or an unparenthesized class member
access (5.2.5), decltype(e) is the type of the entity named by e. If there is
no such entity, or if e names a set of overloaded functions, the program is
ill-formed;
— otherwise, if e is an xvalue, decltype(e) is T, where T is the type of e;
— otherwise, if e is an lvalue, decltype(e) is T, where T is the type of e;
— otherwise, decltype(e) is the type of e.
The operand of the decltype specifier is an unevaluated operand (Clause 5).

which means decltype((e)) is not necessarily the same as decltype(e).

Perhaps the change was made to make this work, but it has side effects in some
context that does not (explicitly) use decltype.

[Bug libstdc++/59687] The description of ios::noreplace is hilarious

2014-01-05 Thread giecrilj at stegny dot 2a.pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59687

--- Comment #1 from Christopher Yeleighton giecrilj at stegny dot 2a.pl ---
(In reply to Christopher Yeleighton from comment #0)
 Also inconsistent with the table at filebuf::open that does not mention x
 mode to be actually used.

Oops, scratch that, I had noreplace in mind.


[Bug fortran/59678] Segmentation fault on equalizing variables of a complex derived data type

2014-01-05 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59678

--- Comment #7 from Dominique d'Humieres dominiq at lps dot ens.fr ---
After some trial and error steps I have been able to build an executable with
gfortran 4.8.2 on x86_64-apple-darwin13. Its output is

PERMIX 28 July 2013
--

solver_init: Warning, Could not initialize an external solver; thus using
basicinternal PERMIX solver which is serial and cannot handle very big
problems.
 prx_read_input: reading the input ../verif/Test1/linearelastic_nonsolver.prx 
Adding a new PART_FEM
femcomm_init: maximum number of threads to use is 1 
femmesh_input_elements_onmaster: Reading Elements finished
femmesh_input_nodes_onmaster2: Reading nodes finished
nonlinear_bonet : nonlinear_static analysis setup fornonlin_to_
part_fem_profile: profiling the part p1
part_fem_distrubute: Distributing the elements
femcomm_metis_partition: Doing the numbering of nodes and elements etc.
femcomm_metis_partition: Finished doing the numbering of nodes and elements
etc!
part_fem_profile: creating metis meshes.
part_fem_profile: creating element graphs.
femmesh_make_metis_graph: metis is not connected to Permix
part_fem_profile: Hisvar profiling.
part_fem_profile: Building element index.
part_fem_profile: Extra info allocation.
part_fem_profile: Surface profiling.
part_fem_profile: Initializing neighbors.
part_profile: Profiling done for all of the parts
initial_conditions_setup: Setting up initial conditions
part_number_dofs: numbering DOFs
part_number_dofs: Done, numbering DOFs
part_communication_setup: Setting up communication
part_communication_setup: setting up communication Done!
matrix_alloc_dynamic: Total DOFs of the sytem=30
initial_condition_apply: Applying initial conditions
modify_apply_initial_conditions: finished applying initial conditions! 
Dumping a paraview Down to disk at time step 0
nonlinear_bonet : nonlinear_static analysis started for nonlin_to_

nonlinear_bonet_execute: Load Step 1
nonlinear_bonet_execute: Newton Iteration 1
solver_solve_serial: solving linear system of equations with solver BASIC
 IERR =219
 2-NORM OF RESIDUAL =  0.7676777D-14
 MAX NORM OF RESIDUAL =  0.4575041D-14
nonlinear_bonet_execute: Line search iteration 2
 Step: 1 iteration: 1 residual: 0.328E-14 load factor: 1.
Dumping a paraview Down to disk at time step 1
Dumping a paraview Down to disk at time step 1
nonlinear_static: nonlinear_static Elastic analysis finished
   0.0.0.  
0.93525519689293113   -5.1386768226528851E-002   0.   
1.8704479398935832  -0.209051353658980590.   
2.8192502780015567  -0.470461462535627040.   
3.8025869994892636  -0.781008297074059170.   
0.1.00382466967916570.   
1.0388142164215601   0.952276698753604430.   
2.0767135602228310   0.798227785037066480.   
3.0989617906167983   0.538887950604416410.   
4.1063496520944476   0.201902000139214000.   
0.1.97667760151370380.   
1.14110343828084691.92531207020343900.   
2.28240670796939731.77326747360523650.   
3.43582741964522631.52482134162769990.   
4.52317523478337961.17217470015875190. 
permix_minimal_serial(54853,0x7fff770cb310) malloc: ***
mach_vm_map(size=18446744037562232832) failed (error code=3)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug

Program received signal SIGSEGV: Segmentation fault - invalid memory reference.

Backtrace for this error:
#0  0x10da38e42
#1  0x10da3960e
#2  0x7fff8d8705a9
Segmentation fault

Does it match what you get?

Trying to build with trunk yields the following ICE

../hisvar_class.f90: In function '__copy_hisvar_class_Ty_hisvar':
../hisvar_class.f90:208:0: internal compiler error: in
gfc_conv_string_parameter, at fortran/trans-expr.c:6919
class(ty_hisvar) :: this
 ^


[Bug fortran/59678] Segmentation fault on equalizing variables of a complex derived data type

2014-01-05 Thread talebi.hossein at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59678

--- Comment #8 from Hossein Talebi talebi.hossein at gmail dot com ---
Basically it is similar.  Below is the output and error message in Ubuntu x64
13.1 using GCC 4.8.1.   You get a little more information though.



PERMIX 28 July 2013   
--

solver_init: Warning, Could not initialize an external solver; thus using
basicinternal PERMIX solver which is serial and cannot handle very big
problems.
 prx_read_input: reading the input ../verif/Test1/linearelastic_nonsolver.prx
Adding a new PART_FEM
femcomm_init: maximum number of threads to use is 1 
femmesh_input_elements_onmaster: Reading Elements finished
femmesh_input_nodes_onmaster2: Reading nodes finished
nonlinear_bonet : nonlinear_static analysis setup fornonlin_to_
part_fem_profile: profiling the part p1
part_fem_distrubute: Distributing the elements
femcomm_metis_partition: Doing the numbering of nodes and elements etc.
femcomm_metis_partition: Finished doing the numbering of nodes and elements
etc!
part_fem_profile: creating metis meshes.
part_fem_profile: creating element graphs.
femmesh_make_metis_graph: metis is not connected to Permix
part_fem_profile: Hisvar profiling.
part_fem_profile: Building element index.
part_fem_profile: Extra info allocation.
part_fem_profile: Surface profiling.
part_fem_profile: Initializing neighbors.
part_profile: Profiling done for all of the parts
initial_conditions_setup: Setting up initial conditions
part_number_dofs: numbering DOFs
part_number_dofs: Done, numbering DOFs
part_communication_setup: Setting up communication
part_communication_setup: setting up communication Done!
matrix_alloc_dynamic: Total DOFs of the sytem=30
initial_condition_apply: Applying initial conditions
modify_apply_initial_conditions: finished applying initial conditions!
Dumping a paraview Down to disk at time step 0
nonlinear_bonet : nonlinear_static analysis started for nonlin_to_

nonlinear_bonet_execute: Load Step 1
nonlinear_bonet_execute: Newton Iteration 1
solver_solve_serial: solving linear system of equations with solver BASIC
 IERR =219
 2-NORM OF RESIDUAL =  0.7676777D-14
 MAX NORM OF RESIDUAL =  0.4575041D-14
nonlinear_bonet_execute: Line search iteration 2
 Step: 1 iteration: 1 residual: 0.328E-14 load factor: 1.
Dumping a paraview Down to disk at time step 1
Dumping a paraview Down to disk at time step 1
nonlinear_static: nonlinear_static Elastic analysis finished
   0.0.0.  
0.93525519689293113   -5.1386768226528851E-002   0.   
1.8704479398935832  -0.209051353658980590.   
2.8192502780015567  -0.470461462535627040.   
3.8025869994892636  -0.781008297074059170.   
0.1.00382466967916570.   
1.0388142164215601   0.952276698753604430.   
2.0767135602228310   0.798227785037066480.   
3.0989617906167983   0.538887950604416410.   
4.1063496520944476   0.201902000139214000.   
0.1.97667760151370380.   
1.14110343828084691.92531207020343900.   
2.28240670796939731.77326747360523650.   
3.43582741964522631.52482134162769990.   
4.52317523478337961.17217470015875190.

Program received signal SIGSEGV: Segmentation fault - invalid memory reference.

Backtrace for this error:
#0  0x7FF93F00E7D7
#1  0x7FF93F00EDDE
#2  0x7FF93E749FEF
#3  0x7FF93E863ED6
#4  0x7EE377 in permix at permix.f90:57 (discriminator 32)
Segmentation fault (core dumped)


[Bug libstdc++/59192] error: use of deleted function ‘A::A(const A)’

2014-01-05 Thread rajveer_aujla at hotmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59192

--- Comment #4 from Rajveer Aujla rajveer_aujla at hotmail dot com ---
Is there a timeline/GCC version planned for when C++11 allocator support will
be added to std::deque? I don't mean to sound pushy, just wondering if it's
worth me recoding the part of my project that relies on it.

I noticed that you wrote a WIP patch for it linked below, is this reliable
enough to be used for now?

http://gcc.1065356.n5.nabble.com/WIP-C-11-allocator-support-for-std-deque-td987696.html


[Bug target/59679] gcc version 4.7.3 and gcc version 4.5.3 cause an unaligned access exception on NetBSD/Alpha

2014-01-05 Thread nullnilaki at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59679

--- Comment #2 from nullnilaki at gmail dot com ---
Created attachment 31576
  -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=31576action=edit
perl.h

perl.h


[Bug target/59679] gcc version 4.7.3 and gcc version 4.5.3 cause an unaligned access exception on NetBSD/Alpha

2014-01-05 Thread nullnilaki at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59679

--- Comment #3 from nullnilaki at gmail dot com ---
Created attachment 31577
  -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=31577action=edit
scope.c

scope.c


[Bug target/59679] gcc version 4.7.3 and gcc version 4.5.3 cause an unaligned access exception on NetBSD/Alpha

2014-01-05 Thread nullnilaki at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59679

--- Comment #4 from nullnilaki at gmail dot com ---
(In reply to Andrew Pinski from comment #1)
 This looks more like a bug in perl sources.  Can you attach the preprocessed
 source for scope.c?
 
 The big question is how is ARG0_PTR defined?  GCC must be assuming the
 alignment is 64bits for some reason.  This needs the preprocessed source to
 see why the alignment is being done incorrectly.  Maybe ARG0_PTR was
 assigned from a long long pointer. 
 
 In C, once you assign it to a pointer of bigger alignment and it is not
 aligned, the code is undefined.

Thank you for your reply!

ARG0_PTR is defined in scope.c.
#define ARG0_PTR arg0.any_ptr

and

any_ptr is defined in perl.h.

union any {
void*   any_ptr;
I32 any_i32;
IV  any_iv;
UV  any_uv;
longany_long;
boolany_bool;
void(*any_dptr) (void*);
void(*any_dxptr) (pTHX_ void*);
};


[Bug libstdc++/59192] error: use of deleted function ‘A::A(const A)’

2014-01-05 Thread redi at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59192

--- Comment #5 from Jonathan Wakely redi at gcc dot gnu.org ---
It should be done for GCC 5.0

The WIP patch is not reliable.


[Bug bootstrap/59541] [4.9 Regression] Revision 206070 breaks bootstrap on Darwin: config/darwin.c:3665:1: error: control reaches end of non-void function [-Werror=return-type]

2014-01-05 Thread iains at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59541

--- Comment #12 from Iain Sandoe iains at gcc dot gnu.org ---
Author: iains
Date: Sun Jan  5 21:47:43 2014
New Revision: 206348

URL: http://gcc.gnu.org/viewcvs?rev=206348root=gccview=rev
Log:
gcc:

PR bootstrap/59541
* config/darwin.c (darwin_function_section): Adjust return values to
correspond to optimisation changes made in r206070.


Modified:
trunk/gcc/ChangeLog
trunk/gcc/config/darwin.c


[Bug ada/59671] Improper Ada behavior under -gnat2012

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

Eric Botcazou ebotcazou at gcc dot gnu.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Eric Botcazou ebotcazou at gcc dot gnu.org ---
 Exactly why I marked this as blocker. There is no workaround. -gnat2012 will
 not compile properly, plain and simple. Adding out to a parameter of a
 function results in this error. Stepping back to -gnat2005 is not a
 workaround, it's moving to a different language; it's a less severe form of
 moving from, say Ada to ALGOL.

I'm sure there is a simple workaround though, like turning the function into a
procedure.  Blocker really means blocker.

 I disagree with this being a duplicate, as the problem in that report, which
 I read prior to filing this one, is an issue with pragmas behavior, while
 this is with out parameters of functions; these are not the same thing.
 Two different issues are reporting the same error message; the error message
 is what is common, not the error.

Then please avoid confusing the matter by writing I've faced an almost
identical problem and providing no way for anyone to reproduce your problem. 
Until we can reproduce it, we'll treat this PR as a duplicate of the other.

*** This bug has been marked as a duplicate of bug 58151 ***


[Bug ada/58151] conflict of writable function parameter in construct with arbitrary order of evaluation is often a spurious error

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

--- Comment #6 from Eric Botcazou ebotcazou at gcc dot gnu.org ---
*** Bug 59671 has been marked as a duplicate of this bug. ***


[Bug c/59688] New: Build error on MAC OS X Lion

2014-01-05 Thread juergen.reuter at desy dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59688

Bug ID: 59688
   Summary: Build error on MAC OS X Lion
   Product: gcc
   Version: 4.9.0
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: c
  Assignee: unassigned at gcc dot gnu.org
  Reporter: juergen.reuter at desy dot de


[Bug c/59688] Build error on MAC OS X Lion

2014-01-05 Thread juergen.reuter at desy dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59688

Jürgen Reuter juergen.reuter at desy dot de changed:

   What|Removed |Added

   Host||MAC OS X
   Severity|normal  |blocker

--- Comment #2 from Jürgen Reuter juergen.reuter at desy dot de ---
System is MAC OS X, x86_64, Darwin Kernel v11.4.2., der svn von gcc is
r206346.

On compilation, I get the following error:
/usr/local/packages/gcc-4.9.0_trunk/build/./prev-gcc/xg++
-B/usr/local/packages/gcc-4.9.0_trunk/build/./prev-gcc/
-B/usr/local/x86_64-apple-darwin11.4.2/bin/ -nostdinc++
-B/usr/local/packages/gcc-4.9.0_trunk/build/prev-x86_64-apple-darwin11.4.2/libstdc++-v3/src/.libs
-B/usr/local/packages/gcc-4.9.0_trunk/build/prev-x86_64-apple-darwin11.4.2/libstdc++-v3/libsupc++/.libs
-I/usr/local/packages/gcc-4.9.0_trunk/build/prev-x86_64-apple-darwin11.4.2/libstdc++-v3/include/x86_64-apple-darwin11.4.2
-I/usr/local/packages/gcc-4.9.0_trunk/build/prev-x86_64-apple-darwin11.4.2/libstdc++-v3/include
-I/usr/local/packages/gcc-4.9.0_trunk/libstdc++-v3/libsupc++
-L/usr/local/packages/gcc-4.9.0_trunk/build/prev-x86_64-apple-darwin11.4.2/libstdc++-v3/src/.libs
-L/usr/local/packages/gcc-4.9.0_trunk/build/prev-x86_64-apple-darwin11.4.2/libstdc++-v3/libsupc++/.libs
-c   -g -O2  -gtoggle -DIN_GCC-fno-exceptions -fno-rtti
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common 
-DHAVE_CONFIG_H -I. -I. -I../../gcc -I../../gcc/. -I../../gcc/../include
-I./../intl -I../../gcc/../libcpp/include -I/usr/local//include
-I/usr/local//include -I/usr/local//include  -I../../gcc/../libdecnumber
-I../../gcc/../libdecnumber/dpd -I../libdecnumber -I../../gcc/../libbacktrace  
 -o darwin.o -MT darwin.o -MMD -MP -MF ./.deps/darwin.TPo
../../gcc/config/darwin.c
../../gcc/config/darwin.c: In function ‘section* darwin_function_section(tree,
node_frequency, bool, bool)’:
../../gcc/config/darwin.c:3665:1: error: control reaches end of non-void
function [-Werror=return-type]
 }
 ^
cc1plus: all warnings being treated as errors
make[3]: *** [darwin.o] Error 1
make[2]: *** [all-stage2-gcc] Error 2
make[1]: *** [stage2-bubble] Error 2
make: *** [all] Error 2

[Bug c/59688] Build error on MAC OS X Lion

2014-01-05 Thread juergen.reuter at desy dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59688

--- Comment #1 from Jürgen Reuter juergen.reuter at desy dot de ---
Created attachment 31578
  -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=31578action=edit
config log of my gcc build

[Bug c/59688] Build error on MAC OS X Lion

2014-01-05 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59688

Dominique d'Humieres dominiq at lps dot ens.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Dominique d'Humieres dominiq at lps dot ens.fr ---
Fixed by r206348.

*** This bug has been marked as a duplicate of bug 59541 ***


[Bug bootstrap/59541] [4.9 Regression] Revision 206070 breaks bootstrap on Darwin: config/darwin.c:3665:1: error: control reaches end of non-void function [-Werror=return-type]

2014-01-05 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59541

Dominique d'Humieres dominiq at lps dot ens.fr changed:

   What|Removed |Added

 CC||juergen.reuter at desy dot de

--- Comment #13 from Dominique d'Humieres dominiq at lps dot ens.fr ---
*** Bug 59688 has been marked as a duplicate of this bug. ***


[Bug target/59689] New: Code bloat introduced by pointer arithmetic

2014-01-05 Thread til...@code-monkey.de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59689

Bug ID: 59689
   Summary: Code bloat introduced by pointer arithmetic
   Product: gcc
   Version: 4.8.2
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: target
  Assignee: unassigned at gcc dot gnu.org
  Reporter: til...@code-monkey.de

The C snippet below contains two lines which AFAICS should be equivalent, but
depending on which of the two is used, gcc will either generate good (few
instructions) or bad (more instructions) code.

$ armv5tel-softfloat-linux-gnueabi-gcc -O2 t.c -S -DGOOD -o good.S -std=gnu99
$ armv5tel-softfloat-linux-gnueabi-gcc -O2 t.c -S -DBAD -o bad.S -std=gnu99
$ wc -l good.S bad.S 
 132 good.S
 206 bad.S
$

#define M(c) \
do { \
c = *(++ptr); \
if (!flag  f2()) \
flag = 1; \
if (!flag) { \
f3 (c); \
} \
} while (0)

unsigned f2 (void);
void f3 (unsigned c);

void f()
{
const int size = 512;
char *ptr, line[size];
unsigned flag = 0;

#ifdef GOOD
ptr = line[0] - 1; // !!
#elif BAD
ptr = line; ptr--;  // !!
#else
# error need either GOOD or BAD
#endif

for (;;) {
unsigned c;

M (c); M (c); M (c); M (c);
M (c); M (c); M (c); M (c);

M (c); M (c); M (c); M (c);
M (c); M (c); M (c); M (c);
}
}


[Bug target/59689] Code bloat introduced by pointer arithmetic

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

Jakub Jelinek jakub at gcc dot gnu.org changed:

   What|Removed |Added

 CC||jakub at gcc dot gnu.org

--- Comment #1 from Jakub Jelinek jakub at gcc dot gnu.org ---
This testcase has undefined behavior (pointer arithmetics is only allowed
within the object the pointer points), so it can do anything and the code
quality is irrelevant then.


[Bug target/59679] gcc version 4.7.3 and gcc version 4.5.3 cause an unaligned access exception on NetBSD/Alpha

2014-01-05 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59679

--- Comment #5 from Andrew Pinski pinskia at gcc dot gnu.org ---
This is still not the preprocessed source.  We need the preprocessed source and
the exact options you used to compile the source and the exact options used to
configure gcc with.


[Bug tree-optimization/59690] New: GCC fails to fold operations on frame-allocated variable across function call

2014-01-05 Thread patrick at parcs dot ath.cx
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59690

Bug ID: 59690
   Summary: GCC fails to fold operations on frame-allocated
variable across function call
   Product: gcc
   Version: 4.9.0
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: tree-optimization
  Assignee: unassigned at gcc dot gnu.org
  Reporter: patrick at parcs dot ath.cx

In the following testcase

void bar (void);
void baz (int *);

void
foo (void)
{
  int x;

  x = 5;
  bar ();
  x += 10;
  baz (x);
  x += 15;
  bar ();
  x += 20;
  baz (x);
}

GCC does not transform the sequence { x = 5; bar (); x += 10; ... } into { x =
15; bar (); ... }.  It seems to think that the frame-allocated x is global
memory.


[Bug tree-optimization/59690] GCC fails to fold operations on frame-allocated variable across function call

2014-01-05 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59690

--- Comment #1 from Andrew Pinski pinskia at gcc dot gnu.org ---
It seems to think that the frame-allocated x is global memory.

No it thinks it has already escaped the function because right now escape
analysis is not flow sensitive.


[Bug tree-optimization/23384] Clobber list should be flow sensitive

2014-01-05 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23384

Andrew Pinski pinskia at gcc dot gnu.org changed:

   What|Removed |Added

 CC||patrick at parcs dot ath.cx

--- Comment #4 from Andrew Pinski pinskia at gcc dot gnu.org ---
*** Bug 59690 has been marked as a duplicate of this bug. ***


[Bug tree-optimization/59690] GCC fails to fold operations on frame-allocated variable across function call

2014-01-05 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59690

Andrew Pinski pinskia at gcc dot gnu.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Andrew Pinski pinskia at gcc dot gnu.org ---
(In reply to Andrew Pinski from comment #1)
 It seems to think that the frame-allocated x is global memory.
 
 No it thinks it has already escaped the function because right now escape
 analysis is not flow sensitive.

Well the clobber list that is.  Dup of bug 23384.

*** This bug has been marked as a duplicate of bug 23384 ***


[Bug other/59691] New: cilk-plus failure on PENTIUM2

2014-01-05 Thread bernd.edlinger at hotmail dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59691

Bug ID: 59691
   Summary: cilk-plus failure on PENTIUM2
   Product: gcc
   Version: 4.9.0
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: other
  Assignee: unassigned at gcc dot gnu.org
  Reporter: bernd.edlinger at hotmail dot de

Almost all cilk-plus execution tests fail due to invalid instruction
on PENTIUM2.

Core was generated by `./fib.exe'.
Program terminated with signal 4, Illegal instruction.
#0  0x0036237a in sysdep_save_fp_ctrl_state () from
/home/ed/gnu/gcc-build/i686-pc-linux-gnu/./libcilkrts/.libs/libcilkrts.so.5
(gdb) disass
Dump of assembler code for function sysdep_save_fp_ctrl_state:
   0x00362370 +0: mov0x4(%esp),%eax
   0x00362374 +4: cmpb   $0x0,0x3(%eax)
   0x00362378 +8: je 0x362381 sysdep_save_fp_ctrl_state+17
= 0x0036237a +10:stmxcsr 0x28(%eax)
   0x0036237e +14:fnstsw 0x2c(%eax)
   0x00362381 +17:repz ret
End of assembler dump.
(gdb) bt
#0  0x0036237a in sysdep_save_fp_ctrl_state () from
/home/ed/gnu/gcc-build/i686-pc-linux-gnu/./libcilkrts/.libs/libcilkrts.so.5
#1  0x00362c5b in __cilkrts_save_fp_ctrl_state () from
/home/ed/gnu/gcc-build/i686-pc-linux-gnu/./libcilkrts/.libs/libcilkrts.so.5
#2  0x08048818 in fib ()
#3  0x0804868b in main ()

cat /proc/cpuinfo
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 5
model name  : Pentium II (Deschutes)
stepping: 2
microcode   : 0x2a
cpu MHz : 448.819
cache size  : 512 KB
fdiv_bug: no
hlt_bug : no
f00f_bug: no
coma_bug: no
fpu : yes
fpu_exception   : yes
cpuid level : 2
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov
pse36 mmx fxsr
bogomips: 897.63
clflush size: 32
cache_alignment : 32
address sizes   : 36 bits physical, 32 bits virtual
processor   : 1
vendor_id   : GenuineIntel
cpu family  : 6
model   : 5
model name  : Pentium II (Deschutes)
stepping: 2
microcode   : 0x2a
cpu MHz : 448.819
cache size  : 512 KB
fdiv_bug: no
hlt_bug : no
f00f_bug: no
coma_bug: no
fpu : yes
fpu_exception   : yes
cpuid level : 2
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov
pse36 mmx fxsr
bogomips: 897.67
clflush size: 32
cache_alignment : 32
address sizes   : 36 bits physical, 32 bits virtual


[Bug target/59691] cilk-plus run failures on non-sse processors

2014-01-05 Thread pinskia at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59691

Andrew Pinski pinskia at gcc dot gnu.org changed:

   What|Removed |Added

 Target||i?86-*-*
 Status|UNCONFIRMED |NEW
   Last reconfirmed||2014-01-06
  Component|other   |target
   Target Milestone|--- |4.9.0
Summary|cilk-plus failure on|cilk-plus run failures on
   |PENTIUM2|non-sse processors
 Ever confirmed|0   |1

--- Comment #1 from Andrew Pinski pinskia at gcc dot gnu.org ---
This is an SSE only instruction.  The code unconditionally uses this
instruction.

Confirmed.

__asm__ (stmxcsr %0 : =m (sf-mxcsr));


[Bug ada/59692] New: Missing __gnat_malloc on mingw targets

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

Bug ID: 59692
   Summary: Missing __gnat_malloc on mingw targets
   Product: gcc
   Version: 4.8.2
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: ada
  Assignee: unassigned at gcc dot gnu.org
  Reporter: steve at sk2 dot org

Created attachment 31579
  -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=31579action=edit
Implement __gnat_malloc in s-memory-mingw.adb.

The __gnat_malloc definition which was added recently to s-memory.adb is
missing from s-memory-mingw.adb, which causes link failures when targeting
Windows.

Simply applying the same changes to s-memory-mingw.adb fixes this.


[Bug target/59689] Code bloat introduced by pointer arithmetic

2014-01-05 Thread til...@code-monkey.de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59689

--- Comment #2 from Tilman Sauerbeck til...@code-monkey.de ---
Sigh, I wondered about that but wasn't sure. Sorry about the noise.


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

2014-01-05 Thread jochen.kuepper at cfel dot de
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.

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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.

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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.

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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.

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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.

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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.

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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.

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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.

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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 on the CC list for the bug.

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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 the CC list for the bug.
 
 -- 
 You are receiving this mail because:
 You are on the CC list for the bug.
 
 -- 
 You are receiving this mail because:
 You are on the CC list for the bug.
 
 -- 
 You are receiving this mail because:
 You are on the CC list for the bug.
 
 -- 
 You are receiving this mail because:
 You are on the CC list for the bug.
 
 -- 
 You are receiving this mail because:
 You are on the CC list for the bug.

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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.
 
 -- 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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-05 Thread jochen.kuepper at cfel dot de
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 jochen.kuepper at cfel dot de ---
 You have contacted me on an old email address at the FHI Berlin. This 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-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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 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-05 Thread jochen.kuepper at cfel dot de
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 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

[Bug ada/59671] Improper Ada behavior under -gnat2012

2014-01-05 Thread p-kell at live dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59671

--- Comment #4 from Patrick Kelly p-kell at live dot com ---
Let's say I'm trying to build a library/package, tens thousands of lines long,
provided by someone else. Is changing every instance of a function with an
out parameter to a procedure with an out parameter, and an additional out
for what used to be the return, really a workaround? For a convenient little
test case, sure, it's a workaround. For real code projects, in no way is the
proposed a valid workaround. Just because I happened to encounter this early on
in a project, where I could work around it, doesn't mean it wouldn't be
encountered late, possibly at release time.

Nearly identical, yes, nearly having quite an important role in semantics.
Code that fits the ARM2012 is not properly compiling under -gnat2012. The
duplicate bug was in regards to pragmas causing this. This bug is in regards
to out parameters on functions. I've already stated this. If you consider
them to be identical issues, then at this point I ask how? How are directives
and subroutines even closely related to each other?

I thought I was clear of the steps needed to produce it. Compile, using the
flags listed, with a function utilizing an out parameter. This would occur
even in test packages, in which the function was the only member of the
package.


[Bug c/59693] New: man page says extern declarations are unaffected by -fvisibility

2014-01-05 Thread jed at 59A2 dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59693

Bug ID: 59693
   Summary: man page says extern declarations are unaffected by
-fvisibility
   Product: gcc
   Version: 4.8.2
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: c
  Assignee: unassigned at gcc dot gnu.org
  Reporter: jed at 59A2 dot org

The gcc man page says the following:

extern declarations are not affected by -fvisibility, so a lot of
code can be recompiled with -fvisibility=hidden with no
modifications.  However, this means that calls to extern functions
with no explicit visibility use the PLT, so it is more effective to
use __attribute ((visibility)) and/or #pragma GCC visibility to
tell the compiler which extern declarations should be treated as
hidden.

I read this to mean that functions and data declared extern will have default
visibility when compiled with -fvisibility=hidden, but that is not the case:

$ cat externvis.c
EXTERN int foo_func(void);
EXTERN int foo_data;

int foo_func(void) {
  return 0;
}
int foo_data;

$ gcc -c externvis.c -DEXTERN=extern -fvisibility=hidden  objdump -t
externvis.o | grep foo  
 g F .text  000b .hidden foo_func
0004   O *COM*  0004 .hidden foo_data
$ gcc -c externvis.c -DEXTERN='__attribute((visibility(default)))'
-fvisibility=hidden  objdump -t externvis.o | grep foo
0004   O *COM*  0004 foo_data
 g F .text  000b foo_func
$ gcc -c externvis.c -DEXTERN=extern  objdump -t externvis.o | grep foo
 g F .text  000b foo_func
0004   O *COM*  0004 foo_data

It seems to me that either gcc's behavior should be changed to match the
documentation or this paragraph should be removed/modified.  Note that clang's
behavior matches gcc (not the man page).


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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

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

2014-01-05 Thread jochen.kuepper at cfel dot de
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:
 
 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-05 Thread jochen.kuepper at cfel dot de
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:
 
 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:
 
 

  1   2   >