[Bug target/12902] [4.0 Regression] Invalid assembly generated when using SSE / xmmintrin.h

2005-01-06 Thread uros at kss-loka dot si
--- Additional Comments From uros at kss-loka dot si 2005-01-06 08:25 --- (In reply to comment #18) There are still problems, testcase from comment #14 fails with: gcc -O2 -msse pr12902-1.c pr12902-1.c: In function 'swizzle': pr12902-1.c:32: error: unrecognizable insn: (insn 105 97 46

[Bug c++/19288] New: No more possible to have a template function that uses a nested class of a template class

2005-01-06 Thread jean-pierre dot chevallet at imag dot fr
#include using namespace std; template class C1 { public: T V; C1(T v) : V(v) {}; class nested { public: T W; nested(T w) : W(w) {}; }; }; // This works well template T f1 ( C1& c) { return c.V; } // the problem is HERE template T f2 ( typename C1::nested& c) { ret

[Bug tree-optimization/18792] ICE with -O1 -ftree-loop-linear on small test case

2005-01-06 Thread steven at gcc dot gnu dot org
--- Additional Comments From steven at gcc dot gnu dot org 2005-01-06 08:48 --- Patch here for the record: http://gcc.gnu.org/ml/gcc-patches/2004-12/msg00948.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18792

[Bug c++/19288] No more possible to have a template function that uses a nested class of a template class

2005-01-06 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2005-01-06 10:13 --- This is invalid. Within the expression "C1::nested", T cannot be deduced because it is in an nondeduced context. ISO/ANSI C++ standard reference: [temp.deduct.type]/4: The nondeduced contexts are: --

[Bug c++/19270] [4.0 Regression] ice on valid template code

2005-01-06 Thread nathan at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |nathan at gcc dot gnu dot |dot org |org Status|NEW

[Bug other/19289] New: ice during gcc4-20050102 profiledboostrap.

2005-01-06 Thread pluto at pld-linux dot org
# gcc -v Reading specs from /usr/lib/gcc/i686-pld-linux/3.4.4/specs Configured with: ../configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --infodir=/usr/share/info --mandir=/usr/share/man --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-languages=c,c++,f77,objc,ad

[Bug preprocessor/19290] New: -M output different with -g

2005-01-06 Thread papadopo at shfj dot cea dot fr
In gcc 3.4, option -M outputs different rules when used with -g: $ cat foo.c #include $ $ touch foo.h $ $ gcc -M -I. foo.c foo.o: foo.c foo.h $ $ gcc -g -M -I. foo.c # 1 "/home/user//" foo.o: foo.c ./foo.h $ This was not the case with gcc 3.3. While the output is arguably correct since '#' i

Re: mips64 - clobberlist errors

2005-01-06 Thread Richard Sandiford
"Carl van_Schaik" <[EMAIL PROTECTED]> writes: > this becomes a pain since gcc somtimes knows this and uses fp as a gpr, > but I cannot clobber it. Why do you want to?

[Bug fortran/19194] Missing RECL parameter in OPEN statement

2005-01-06 Thread tobi at gcc dot gnu dot org
--- Additional Comments From tobi at gcc dot gnu dot org 2005-01-06 13:35 --- Patch here: http://gcc.gnu.org/ml/fortran/2005-01/msg00043.html -- What|Removed |Added

[Bug libstdc++/18889] Unable to build libstdc++-v3

2005-01-06 Thread mike at tedder dot com
--- Additional Comments From mike at tedder dot com 2005-01-06 13:37 --- Sorry for the late reply. Yes, I've noticed that gcc-3.4.0 and 3.4.1 has been successfully built for powerpc, which is why I figured I might have done something wrong. I upgraded to binutils-2.14 and glibc-2.3.3

[Bug c++/19288] No more possible to have a template function that uses a nested class of a template class

2005-01-06 Thread jean-pierre dot chevallet at imag dot fr
--- Additional Comments From jean-pierre dot chevallet at imag dot fr 2005-01-06 13:44 --- Subject: RE: No more possible to have a template function that uses a nested class of a template class Thank you very much for your answer, and I'm very impressed : you have answer very quicky !

[Bug c++/19291] New: Warning "cannot pass objects of non-POD type" should be an error

2005-01-06 Thread loose at astron dot nl
#include #include int main() { std::string s("Hello World"); printf("%s\n", s); return 0; } $ /usr/local/gcc343/bin/g++ nonPODWarn.cc nonPODWarn.cc: In function `int main()': nonPODWarn.cc:6: warning: cannot pass objects of non-POD type `struct std::string' through `...'; call will abor

[Bug c++/19291] Warning "cannot pass objects of non-POD type" should be an error

2005-01-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-06 14:04 --- (In reply to comment #0) > > #include > #include > int main() > { > std::string s("Hello World"); > printf("%s\n", s); > return 0; > } > It cannot be as it is only undefined behavior and the C++

[Bug other/19289] ice during gcc4-20050102 profiledboostrap.

2005-01-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-06 14:08 --- Did you build in a clean directory? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19289

[Bug target/17646] [4.0 Regression] xgcc links 64bit objects into a 32bit target

2005-01-06 Thread jakub at gcc dot gnu dot org
--- Additional Comments From jakub at gcc dot gnu dot org 2005-01-06 14:12 --- There is no bug, the compiler has been configured incorrectly. --libdir=/usr/lib64 should not be used for multilibbed gcc's, --libdir=/usr/lib is what you want. The os multilib magic will DTRT. Similarly, --

[Bug target/17646] [4.0 Regression] xgcc links 64bit objects into a 32bit target

2005-01-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-06 14:16 --- So closing as invalid. -- What|Removed |Added Status|UNCONFIRMED

[Bug preprocessor/19290] -M output different with -g

2005-01-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-06 14:18 --- I knew I had saw this before. This is a dup of bug 17651 which is fixed 3.4.4. *** This bug has been marked as a duplicate of 17651 *** -- What|Removed |Added -

[Bug preprocessor/17651] [3.4 Regression] Erroneous preprocessor output with -g when generating dependencies

2005-01-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-06 14:18 --- *** Bug 19290 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug java/19285] Interfaces not initialized by static field access

2005-01-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-06 14:21 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW E

[Bug other/19289] ice during gcc4-20050102 profiledboostrap.

2005-01-06 Thread pluto at pld-linux dot org
--- Additional Comments From pluto at pld-linux dot org 2005-01-06 14:23 --- (In reply to comment #1) > Did you build in a clean directory? Here's my build script: # rm -rf builddir && mkdir builddir && cd builddir # ../configure \ #{options} # cd .. # make -C builddir \ #profi

[Bug other/19289] ice during gcc4-20050102 profiledboostrap.

2005-01-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-06 14:25 --- Well it is compiling with the installed gcc which is just wrong then. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19289

[Bug fortran/17927] Math error in simple divide operation

2005-01-06 Thread tobi at gcc dot gnu dot org
--- Additional Comments From tobi at gcc dot gnu dot org 2005-01-06 14:27 --- Looks like I didn't close this bug, when I said I would. -- What|Removed |Added Sta

[Bug libfortran/18915] Corrupted gfortran memory management

2005-01-06 Thread tobi at gcc dot gnu dot org
--- Additional Comments From tobi at gcc dot gnu dot org 2005-01-06 14:37 --- *** This bug has been marked as a duplicate of 15080 *** -- What|Removed |Added S

[Bug fortran/15080] Forall bounds not calculated correctly (forall_3.f90)

2005-01-06 Thread tobi at gcc dot gnu dot org
--- Additional Comments From tobi at gcc dot gnu dot org 2005-01-06 14:37 --- *** Bug 18915 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug fortran/5900] [g77 & gfortran] Lapack regressions since g77 2.95.2

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=5900

[Bug fortran/19292] New: [metabug] g77 features lacking in gfortran

2005-01-06 Thread tobi at gcc dot gnu dot org
This is a metabug for all issues in gfortran that need to be resolved before gfortran can be used as a complete replacement for g77. I'm not sure about the following bugs: - PR 15553 : does this also occur without explicit interfaces? IOW is it possible to provoke this error in Fortran 77 code? -

[Bug fortran/13082] Function entries and entries with alternate returns not implemented

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13082

[Bug libfortran/12884] [Regression w.r.t. g77] error in reading a namelist when it is predeced by a line with a SLASH

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12884

[Bug fortran/13257] Error instead of warning for missing comma in format string

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13257

[Bug fortran/14067] no warning when character data statement overflows declared size

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14067

[Bug fortran/13939] Does not accept missing subroutine arguments like g77

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13939

[Bug fortran/14994] Secnds Intrinsic not support (or any VMS intrinsics)

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14994

[Bug libfortran/15235] libgfortran doesn't build on Solaris

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15235

[Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266

[Bug fortran/15326] ICE with assumed length character strings

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15326

[Bug libfortran/15332] colon edit descriptor not handled correctly

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15332

[Bug fortran/15382] frontend too lenient when checking variable declarations

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15382

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

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15966

[Bug libfortran/15234] libgfortran doesn't compile on Tru64 UNIX V4.0F

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15234

[Bug libfortran/16435] gfortran X edit descriptor failure: test f77-edit-x-out.f

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16435

[Bug libfortran/16436] gfortran TL edit descriptor failure - test f77-edit-t-in.f

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16436

[Bug fortran/16531] Hollerith Data does not supported

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16531

[Bug fortran/16465] parser chokes with ffixed-line-length-7

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16465

[Bug fortran/16511] Test 19990905-0.f fails with gfortran

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16511

[Bug fortran/16580] gfortran ICE on test g77.f-torture/execute/intrinsic77.f

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16580

[Bug fortran/17229] parser confused by arithmetic if inside an if

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17229

[Bug fortran/16907] Non-integer array indices rejected

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16907

gcc-bugs@gcc.gnu.org

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17285

[Bug target/19252] sub optimal use of fpu comparisons in SSE code

2005-01-06 Thread bangerth at dealii dot org
--- Additional Comments From bangerth at dealii dot org 2005-01-06 14:40 --- Some more discussion: http://gcc.gnu.org/ml/gcc-patches/2005-01/msg00176.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19252

[Bug fortran/17472] namelist does not handle arrays

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17472

[Bug fortran/17675] [Regression w.r.t. g77] Alignment constraints not honored in EQUIVALENCE

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17675

[Bug libfortran/17871] libgfortran, g77: regression, P edit descriptor, funny output

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17871

[Bug fortran/17423] gfortran segfault when compiling FM509.f from NIST testsuite

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17423

[Bug fortran/17737] ICE when variable appears in two data statements

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17737

[Bug libfortran/17992] reading empty line does not return 0

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17992

[Bug fortran/17941] gfortran: parser chokes on complex literal constant

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17941

[Bug libfortran/18398] Formatted I/O problems

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18398

[Bug fortran/18026] gfortran: regression w.r.t. g77, lacks -ftypeless-boz

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18026

[Bug libfortran/18210] namelist output format problems

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18210

[Bug tree-optimization/18576] [3.4/4.0 Regression] missing jump threading because of type changes

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18576

[Bug fortran/18540] Jumping into blocks gives error rather than warning

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18540

[Bug fortran/18481] [g77 regression] ICE with assigned integer variable format

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18481

[Bug fortran/18518] equivalenced variables are not saved

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18518

[Bug fortran/18714] Runtime hang in LAPACK routine SLAMC1 - in Quetzal benchmark suite

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18714

[Bug fortran/18600] ICE NIST FM020.f reduced case

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18600

[Bug fortran/18737] ICE on invalid use of external keyword

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18737

[Bug fortran/18781] [ICE] WRITE with FMT from CHARACTER array

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18781

[Bug fortran/18827] ICE on assign to common variable

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18827

[Bug fortran/18794] warn about common variable alignment problems

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18794

[Bug libfortran/18879] ? not supported in namelist input

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18879

[Bug fortran/18870] [g77 regression] Equivalencing two common blocks is not caught

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18870

[Bug libfortran/18982] open(status="new") does not generate an error if the file exists

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18982

[Bug fortran/18977] LAPACK test xeigtsts segfaults with optimization

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18977

[Bug fortran/19021] segfault and ice on invalid print statements

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19021

[Bug libfortran/19280] Inconsistent licensing of libgfortran

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19280

[Bug libfortran/19155] blanks not treated as zeros in 'E' format read

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19155

[Bug libfortran/19216] list directed read with leading slash (NIST FM923)

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19216

[Bug libfortran/19052] unit 0 not preconnected to standard error

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19052

[Bug c++/19288] No more possible to have a template function that uses a nested class of a template class

2005-01-06 Thread bangerth at dealii dot org
--- Additional Comments From bangerth at dealii dot org 2005-01-06 14:46 --- Giving explicit template arguments for template operators works the same way: write x.operator<< (abc) instead of x << abc As for the evolution of C++: it isn't C++ but rather gcc that is evolving.

[Bug fortran/19292] [metabug] g77 features lacking in gfortran

2005-01-06 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added BugsThisDependsOn|18576 | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19292

[Bug fortran/19292] [metabug] g77 features lacking in gfortran

2005-01-06 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed||1 Keywords||meta-bug

[Bug debug/19267] [4.0 regression] execute/921215-1.c fails with -fpic at -O3 -g

2005-01-06 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-06 14:50 --- Subject: Bug 19267 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-06 14:49:36 Modified files: gcc: ChangeLog dwarf2out.c gimple-low.c tr

[Bug middle-end/19286] [4.0 Regression] raised TYPES.UNRECOVERABLE_ERROR : comperr.adb:387

2005-01-06 Thread dberlin at gcc dot gnu dot org
--- Additional Comments From dberlin at gcc dot gnu dot org 2005-01-06 14:51 --- Fixed -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug middle-end/19286] [4.0 Regression] raised TYPES.UNRECOVERABLE_ERROR : comperr.adb:387

2005-01-06 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-06 14:50 --- Subject: Bug 19286 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-06 14:49:36 Modified files: gcc: ChangeLog dwarf2out.c gimple-low.c tr

[Bug debug/19267] [4.0 regression] execute/921215-1.c fails with -fpic at -O3 -g

2005-01-06 Thread dberlin at gcc dot gnu dot org
--- Additional Comments From dberlin at gcc dot gnu dot org 2005-01-06 14:52 --- Fixed -- What|Removed |Added Status|NEW |RESOLVED

[Bug c++/19270] [4.0 Regression] ice on valid template code

2005-01-06 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-06 15:22 --- Subject: Bug 19270 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-06 15:22:11 Modified files: gcc/cp : ChangeLog pt.c gcc/testsuite

[Bug c++/19270] [4.0 Regression] ice on valid template code

2005-01-06 Thread nathan at gcc dot gnu dot org
--- Additional Comments From nathan at gcc dot gnu dot org 2005-01-06 15:24 --- 2005-01-06 Nathan Sidwell <[EMAIL PROTECTED]> PR c++/19270 * pt.c (tsubst_copy) : Handle separately. (tsubst_copy_and_build) : Remove obsolete array-new handling code. Use

[Bug c++/19288] No more possible to have a template function that uses a nested class of a template class

2005-01-06 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2005-01-06 15:31 --- My passionate suggestion is to avoid nested classes, but you didn't hear this from me ;) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19288

[Bug c++/19281] file format not recognized; treating as linker script

2005-01-06 Thread jeff at connectrf dot com
--- Additional Comments From jeff at connectrf dot com 2005-01-06 15:33 --- (In reply to comment #1) > This is not a gcc bug, either this is your bug and the .o file is not an object file or this is a binutils bug. Andrew, then perhaps you can explain why the exact same code compiles, l

[Bug c++/19253] [3.4/4.0 regression] bad error message / ICE for invalid template parameter

2005-01-06 Thread nathan at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |nathan at gcc dot gnu dot |dot org |org Status|NEW

[Bug c++/19258] [3.4/4.0 Regression] Incorrect access check for default argument

2005-01-06 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-06 15:41 --- Subject: Bug 19258 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-06 15:41:34 Modified files: gcc/cp : ChangeLog pt.c gcc/testsuite

[Bug c++/19281] file format not recognized; treating as linker script

2005-01-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-06 15:42 --- (In reply to comment #2) > (In reply to comment #1) > > This is not a gcc bug, either this is your bug and the .o file is not an > object file or this is a binutils bug. > > Andrew, then perhaps you can exp

[Bug fortran/18977] LAPACK test xeigtsts segfaults with optimization

2005-01-06 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2005-01-06 15:43 --- I'm no Fortran guru, but could be this related to PR 17675? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18977

[Bug fortran/18977] LAPACK test xeigtsts segfaults with optimization

2005-01-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-06 15:46 --- Yes this is most likely PR 17675 which effects all targets where unaligned loads cause an processor exception (and the OS does not handle it) (ia64 is one of these targets). -- What|Remove

[Bug c++/19258] [3.4 Regression] Incorrect access check for default argument

2005-01-06 Thread lerdsuwa at gcc dot gnu dot org
--- Additional Comments From lerdsuwa at gcc dot gnu dot org 2005-01-06 15:46 --- Fixed in the mainline. -- What|Removed |Added Keywords|patch

[Bug tree-optimization/19283] [4.0 Regression] Bad code generated in final_cleanup

2005-01-06 Thread jakub at gcc dot gnu dot org
--- Additional Comments From jakub at gcc dot gnu dot org 2005-01-06 15:52 --- Yeah, this is fold_widened_comparison "optimizing": (short intD.7) (short unsigned intD.8) (intD.0) (short unsigned intD.8) uD.1124 < 0 into 1 (for unsigned int uD.1124). get_unwidened returns (unsigned short

[Bug fortran/16511] Test 19990905-0.f fails with gfortran

2005-01-06 Thread coudert at clipper dot ens dot fr
--- Additional Comments From coudert at clipper dot ens dot fr 2005-01-06 15:56 --- The reduced case given in comment #9 fails to compile with Intel compiler ("This entity cannot be in a specification expression"), Sun ("Local variable "M" must be a dummy argument or in common to be used

[Bug c/19293] New: avr-gcc crashes when using shifts with negative shift count

2005-01-06 Thread bjoern dot m dot haase at web dot de
avr-gcc crashes with an internal compiler error when shift operations with negative shift count are used, e.g. a >> -13. Error message is "negative instruction length", probably since the expression used for calculating the instruction length (c-code) assumes the shift count to be a positive num

[Bug c++/17154] [4.0 Regression] Using declaration of function name ignored inside partial specialization of template class

2005-01-06 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-06 16:04 --- Subject: Bug 17154 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-06 16:04:06 Modified files: gcc/cp : ChangeLog search.c gcc/tests

[Bug c++/17154] [4.0 Regression] Using declaration of function name ignored inside partial specialization of template class

2005-01-06 Thread lerdsuwa at gcc dot gnu dot org
--- Additional Comments From lerdsuwa at gcc dot gnu dot org 2005-01-06 16:06 --- Fixed in the mainline. -- What|Removed |Added Status|ASSIGNED

  1   2   3   >