[Bug fortran/34665] Cannot pass scalar to array argument 'a'

2008-01-06 Thread burnus at gcc dot gnu dot org
-- burnus at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |burnus at gcc dot gnu dot |dot org

[Bug c/34697] gcc -std=gnu99 emits global symbol for extern inline function declarations

2008-01-06 Thread dan at math dot uiuc dot edu
--- Comment #2 from dan at math dot uiuc dot edu 2008-01-07 00:20 --- Well, if you were right, then gnu99 and gnu89 would have the same behavior, but they don't: indigo% gcc -c -std=gnu99 foo.c indigo% nm foo.o T _f 0008 T _main indigo% gcc -c -std=gnu89 foo.c indigo% nm fo

[Bug c/34697] gcc -std=gnu99 emits global symbol for extern inline function declarations

2008-01-06 Thread dan at math dot uiuc dot edu
--- Comment #3 from dan at math dot uiuc dot edu 2008-01-07 00:21 --- PS: it could be a bug inserted by Apple... -- dan at math dot uiuc dot edu changed: What|Removed |Added --

[Bug c/34697] gcc -std=gnu99 emits global symbol for extern inline function declarations

2008-01-06 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2008-01-07 00:28 --- > Use nm filename.o to see that a global symbol f has been declared, but it >shouldn't be. Yes it should, that is what it should do for C99/GNU99. >PS: it could be a bug inserted by Apple... Well no, Apple just f

[Bug c++/31780] [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion

2008-01-06 Thread gdr at cs dot tamu dot edu
--- Comment #25 from gdr at cs dot tamu dot edu 2008-01-07 00:38 --- Subject: Re: [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion "mark at codesourcery dot com" <[EMAIL PROTECTED]> writes: | Subject: Re: [4.2/4.3 regression] ICE with incompatibl

[Bug c++/31780] [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion

2008-01-06 Thread mark at codesourcery dot com
--- Comment #26 from mark at codesourcery dot com 2008-01-07 01:16 --- Subject: Re: [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion gdr at cs dot tamu dot edu wrote: > I would not bet money that nobody is not using it. However, that > somebody

[Bug fortran/34698] [4.3 regression] common_6.f90 gives internal compiler error

2008-01-06 Thread ismail at pardus dot org dot tr
--- Comment #1 from ismail at pardus dot org dot tr 2008-01-07 01:32 --- I mean 2008-01-06 snapshot of course, duh. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34698

[Bug fortran/34698] New: [4.3 regression] common_6.f90 gives internal compiler error

2008-01-06 Thread ismail at pardus dot org dot tr
This is introduced in last 24 hours because 2007-01-06 snapshot was ok, Executing on host: /var/pisi/gcc-4.3_pre20080107-32/work/gcc-4.3-20080107/build/gcc/testsuite/gfortran/../../gfortran -B/var/pisi/gcc-4.3_pre20080107-32/work /gcc-4.3-20080107/build/gcc/testsuite/gfortran/../../ /var/pisi/gcc-

[Bug c/34697] gcc -std=gnu99 emits global symbol for extern inline function declarations

2008-01-06 Thread dan at math dot uiuc dot edu
--- Comment #5 from dan at math dot uiuc dot edu 2008-01-07 01:43 --- Thank you! -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34697

[Bug fortran/34698] [4.3 regression] common_6.f90 gives internal compiler error

2008-01-06 Thread jvdelisle at gcc dot gnu dot org
--- Comment #2 from jvdelisle at gcc dot gnu dot org 2008-01-07 01:46 --- I can confirm this bug. We know where this was introduced. It is probably a latent bug and occurs only with invalid code. It is being worked. -- jvdelisle at gcc dot gnu dot org changed: What

[Bug fortran/34659] [4.3 Regression] corner case continuation line

2008-01-06 Thread jvdelisle at gcc dot gnu dot org
--- Comment #5 from jvdelisle at gcc dot gnu dot org 2008-01-07 02:53 --- Subject: Bug 34659 Author: jvdelisle Date: Mon Jan 7 02:53:04 2008 New Revision: 131371 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=131371 Log: 2008-01-06 Jerry DeLisle <[EMAIL PROTECTED]>

[Bug fortran/34659] [4.3 Regression] corner case continuation line

2008-01-06 Thread jvdelisle at gcc dot gnu dot org
--- Comment #6 from jvdelisle at gcc dot gnu dot org 2008-01-07 03:17 --- Fixed on trunk. -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added St

[Bug libfortran/34699] New: FAIL: gfortran.fortran-torture/execute/intrinsic_set_exponent.f90 execution

2008-01-06 Thread danglin at gcc dot gnu dot org
Executing on host: /xxx/gnu/gcc/objdir/gcc/testsuite/gfortran/../../gfortran -B/ xxx/gnu/gcc/objdir/gcc/testsuite/gfortran/../../ /xxx/gnu/gcc/gcc/gcc/testsuite/ gfortran.fortran-torture/execute/intrinsic_set_exponent.f90 -w -O0 -L/xxx/gn u/gcc/objdir/hppa1.1-hp-hpux10.20/./libgfortran/.libs -L

[Bug fortran/33375] ICE (segfault) gfortran.dg/common_6.f90

2008-01-06 Thread hjl at lucon dot org
--- Comment #7 from hjl at lucon dot org 2008-01-07 04:57 --- gfc_undo_symbols has for (p = changed_syms; p; p = q) { q = p->tlink; if (p->new) { /* Symbol was new. */ delete_symtree (&p->ns->sym_root, p->name); p->refs-

[Bug c++/34700] New: rvalue erroneously binding to non-const lvalue reference

2008-01-06 Thread eric dot niebler at gmail dot com
Consider the following code, compiled with the latest gcc built from sources, with the -std=c++0x flag: #include struct S { S() {} S(S &s) { std::cout << "L-value ref" << std::endl; } S(S &&s) { std::cout << "R-value ref" << std::endl; } }; S source() { static S s; return s; } int m

[Bug c++/31780] [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion

2008-01-06 Thread gdr at cs dot tamu dot edu
--- Comment #27 from gdr at cs dot tamu dot edu 2008-01-07 06:54 --- Subject: Re: [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion "mark at codesourcery dot com" <[EMAIL PROTECTED]> writes: | --- Comment #26 from mark at codesourcery dot com

[Bug c++/31780] [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion

2008-01-06 Thread gdr at cs dot tamu dot edu
--- Comment #28 from gdr at cs dot tamu dot edu 2008-01-07 06:57 --- Subject: Re: [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion "mark at codesourcery dot com" <[EMAIL PROTECTED]> writes: | Imagine that you're a user. You read about GNU __compl

[Bug c++/31780] [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion

2008-01-06 Thread gdr at cs dot tamu dot edu
--- Comment #29 from gdr at cs dot tamu dot edu 2008-01-07 07:09 --- Subject: Re: [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion "mark at codesourcery dot com" <[EMAIL PROTECTED]> writes: | > We have no plan of how those new constructors will in

[Bug c++/31780] [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion

2008-01-06 Thread mark at codesourcery dot com
--- Comment #30 from mark at codesourcery dot com 2008-01-07 07:44 --- Subject: Re: [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion gdr at cs dot tamu dot edu wrote: > | Is it conceivable that ISO C++ will ever add a > | complex::complex(int) co

[Bug fortran/34698] [4.3 regression] common_6.f90 gives internal compiler error

2008-01-06 Thread burnus at gcc dot gnu dot org
--- Comment #3 from burnus at gcc dot gnu dot org 2008-01-07 07:48 --- *** This bug has been marked as a duplicate of 33375 *** -- burnus at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/31780] [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion

2008-01-06 Thread mark at codesourcery dot com
--- Comment #31 from mark at codesourcery dot com 2008-01-07 07:48 --- Subject: Re: [4.2/4.3 regression] ICE with incompatible types for ?: with "complex type" conversion gdr at cs dot tamu dot edu wrote: > But, as that hypothetical user, I would not have any ground to be unhappy. >

[Bug fortran/33375] ICE (segfault) gfortran.dg/common_6.f90

2008-01-06 Thread burnus at gcc dot gnu dot org
--- Comment #8 from burnus at gcc dot gnu dot org 2008-01-07 07:48 --- *** Bug 34698 has been marked as a duplicate of this bug. *** -- burnus at gcc dot gnu dot org changed: What|Removed |Added -

<    1   2