[Bug c++/23513] [4.0/4.1 Regression] overload resolution fails to select a more specialized template

2005-09-16 Thread nathan at gcc dot gnu dot org
--- Additional Comments From nathan at gcc dot gnu dot org 2005-09-16 07:30 --- I shall take a look -- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |na

[Bug tree-optimization/23911] New: Failure to propagate constants from a const initializer for _Complex

2005-09-16 Thread steven at gcc dot gnu dot org
double _Complex *a; const double _Complex b[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; void test (void) { a[0] = b[0] + b[1]; a[1] = b[0] + b[1]; return; } --> ;; Function test (test) test () { double CI.17; double CR.16; complex double * D.1616; complex double * a.

[Bug middle-end/19721] [meta-bug] optimizations that CSE still catches

2005-09-16 Thread steven at gcc dot gnu dot org
-- What|Removed |Added BugsThisDependsOn||23911 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19721

[Bug middle-end/15855] [3.4/4.0/4.1 Regression] g++ crash with -O2 and -O3 on input file

2005-09-16 Thread rguenth at gcc dot gnu dot org
--- Additional Comments From rguenth at gcc dot gnu dot org 2005-09-16 08:14 --- For a cut-down testcase (the one attached takes too much memory for my box) detailled mem-report shows tree-dfa.c:175 (create_stmt_ann) 12749568: 2.0%2932228: 1.0% 52: 0.0%

[Bug fortran/23912] New: MOD function requires same kind arguments

2005-09-16 Thread fxcoudert at gcc dot gnu dot org
$ cat a.f integer*8 i integer*4 j i = mod(i,j) end $ g77 a.f $ ifort a.f $ pgf77 a.f $ gfortran a.f In file a.f:3 i = mod(i,j) 1 Error: 'p' argument of 'mod' intrinsic at (1) must be the same

[Bug fortran/19292] [meta-bug] g77 features lacking in gfortran

2005-09-16 Thread fxcoudert at gcc dot gnu dot org
-- What|Removed |Added BugsThisDependsOn||23912 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19292

[Bug tree-optimization/23911] Failure to propagate constants from a const initializer for _Complex

2005-09-16 Thread bonzini at gcc dot gnu dot org
--- Additional Comments From bonzini at gcc dot gnu dot org 2005-09-16 09:11 --- fold_const_aggregate_ref does not handle REALPART_EXPR and IMAGPART_EXPR. Steven has a patch, or so I'm told. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23911

[Bug tree-optimization/23911] Failure to propagate constants from a const initializer for _Complex

2005-09-16 Thread steven at gcc dot gnu dot org
--- Additional Comments From steven at gcc dot gnu dot org 2005-09-16 09:58 --- This fixes it. Sadly only store-ccp propagates constants out of initializers right now, which is a separate bug -- we _do_ find the constant in the initializer... but then we don't propagate it for som

[Bug tree-optimization/23911] Failure to propagate constants from a const initializer for _Complex

2005-09-16 Thread steven at gcc dot gnu dot org
--- Additional Comments From steven at gcc dot gnu dot org 2005-09-16 10:39 --- The reason why this only happens in store-ccp is this: /* If we are not doing store-ccp, statements with loads and/or stores will never fold into a constant. */ if (!do_store_ccp && (ann

bug using pointers in gcc

2005-09-16 Thread Muhammad Waseem
Hello I am facing a problem in a very simple C code using pointers: The code is # 1. #include 2. int main(void) 3. { 4. char *p1; 5. char *p2; 6. 7. char a = 65; 8. p1 = &a; 9. printf(" %d %d

[Bug c/23913] New: float/int binary conversion -- "-O2 -march=i686"

2005-09-16 Thread larschri at pvv dot ntnu dot no
Full example files are here: http://www.pvv.ntnu.no/~larschri/cast-bug/ The compiled program fails to do binary conversion between float and int. Both sizeof(int) and sizeof(float) is 4, so the two floats below should have the same binary representation after being written/read to/from the integer

[Bug c/23913] float/int binary conversion -- "-O2 -march=i686"

2005-09-16 Thread larschri at pvv dot ntnu dot no
--- Additional Comments From larschri at pvv dot ntnu dot no 2005-09-16 11:12 --- Created an attachment (id=9739) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9739&action=view) .i file that triggers the bug. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23913

[Bug c/23913] float/int binary conversion -- "-O2 -march=i686"

2005-09-16 Thread ebotcazou at gcc dot gnu dot org
--- Additional Comments From ebotcazou at gcc dot gnu dot org 2005-09-16 11:16 --- Your code violates ISO C aliasing rules. See the docs about -fstrict-aliasing. -- What|Removed |Added -

[Bug c++/23914] New: [4.0 Regression] further 'non-constant' template argument case exposed by Boost

2005-09-16 Thread mail at michael-stevens dot de
Failing case comes from regression testing using Boost uBLAS with gcc4.0.2 prerelease: Using built-in specs. Target: x86_64-unknown-linux-gnu Configured with: ../gcc-4.0.2-20050913/configure --prefix=/home/michael/locacc402 Thread model: posix gcc version 4.0.2 20050913 (prerelease) The

[Bug c/23913] float/int binary conversion -- "-O2 -march=i686"

2005-09-16 Thread larschri at pvv dot ntnu dot no
--- Additional Comments From larschri at pvv dot ntnu dot no 2005-09-16 11:34 --- I see - thanks! I didn't use the -Wall options when changing from C++ to C. g++ had the same problem, but didn't give any warnings with -Wall. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23913

[Bug c++/23915] New: Missing -Wstrict-aliasing warning

2005-09-16 Thread larschri at pvv dot ntnu dot no
I get warning when compiling the following program as C, but not as C++. I have experienced that such casts can fail for both C and C++ programs when running with option -O2. See also [Bug c/23913]. int main() { float f = 4.5; int i =*((int*)&f); (void)i; return 0; } $ g++ -Wstrict-a

[Bug c/23913] float/int binary conversion -- "-O2 -march=i686"

2005-09-16 Thread larschri at pvv dot ntnu dot no
--- Additional Comments From larschri at pvv dot ntnu dot no 2005-09-16 12:12 --- I have filed this enhancment ticket: [Bug c++/23915] -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23913

[Bug c++/23914] [4.0 Regression] further 'non-constant' template argument case exposed by Boost

2005-09-16 Thread bangerth at dealii dot org
--- Additional Comments From bangerth at dealii dot org 2005-09-16 13:21 --- I am pretty sure this is a duplicate of PR 23896, which was fixed last night. Can you try with an updated compiler? Thanks Wolfgang -- What|Removed |Added ---

[Bug c++/23915] Missing -Wstrict-aliasing warning

2005-09-16 Thread bangerth at dealii dot org
--- Additional Comments From bangerth at dealii dot org 2005-09-16 13:25 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW Ever

[Bug c++/23513] [4.0/4.1 Regression] overload resolution fails to select a more specialized template

2005-09-16 Thread nathan at gcc dot gnu dot org
--- Additional Comments From nathan at gcc dot gnu dot org 2005-09-16 13:37 --- This is a piece of underspecification in the resolution of DR 214 (http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#214). That basically tells one to compare pairs of arguments. But in this case

[Bug target/23909] Incorrect code generated for SSE2 based xor routine when compiled with -O2 -fomit-frame-pointer

2005-09-16 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Component|c |target http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23909

[Bug target/23909] Incorrect code generated for SSE2 based xor routine when compiled with -O2 -fomit-frame-pointer

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 14:04 --- You should be using the SSE instrincs functions. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23909

[Bug tree-optimization/23911] Failure to propagate constants from a const initializer for _Complex

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 14:11 --- Confirmed. -- What|Removed |Added Severity|normal |minor

[Bug c++/23915] Missing -Wstrict-aliasing warning

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 14:14 --- This really a dup of bug 14024. *** This bug has been marked as a duplicate of 14024 *** -- What|Removed |Added -

[Bug c++/14024] g++ isn't reporting aliasing warnings

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 14:15 --- *** Bug 23915 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug c/23913] float/int binary conversion -- "-O2 -march=i686"

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 14:18 --- Reopening to ... -- What|Removed |Added Status|RESOLVED|UNCO

[Bug c/23913] float/int binary conversion -- "-O2 -march=i686"

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 14:18 --- Mark as a dup of bug 21920. *** This bug has been marked as a duplicate of 21920 *** -- What|Removed |Added -

[Bug c/21920] alias violating

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

[Bug swing/22610] swing: JScrollPane is not repainted correctly after window resize (more info)

2005-09-16 Thread langel at redhat dot com
--- Additional Comments From langel at redhat dot com 2005-09-16 14:28 --- Fixed -- What|Removed |Added Status|ASSIGNED|RESOLVED Res

[Bug target/23909] Incorrect code generated for SSE2 based xor routine when compiled with -O2 -fomit-frame-pointer

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 14:40 --- This works for me with 4.1.0 but I really think it is just an accident. /[EMAIL PROTECTED]@*/ int cr0; /* really, it's used, but lclint doesn't "get" __asm__ */ This comment does not make sense. Speci

[Bug c++/23914] [4.0/4.1 Regression] further 'non-constant' template argument case exposed by Boost

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 14:42 --- Nope this was not fixed by the patch for 23896, tested on the mainline. -- What|Removed |Added ---

[Bug swing/22610] swing: JScrollPane is not repainted correctly after window resize (more info)

2005-09-16 Thread cvs-commit at developer dot classpath dot org
--- Additional Comments From cvs-commit at developer dot classpath dot org 2005-09-16 14:44 --- Subject: Bug 22610 CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel <[EMAIL PROTECTED]> 05/09/16 14:28:17 Modified files:

[Bug c++/23914] [4.0/4.1 Regression] further 'non-constant' template argument case exposed by Boost

2005-09-16 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Severity|normal |critical Keywords||rejects-valid http://gcc.gnu.org/bugzilla/show_bug.c

[Bug target/23909] Incorrect code generated for SSE2 based xor routine when compiled with -O2 -fomit-frame-pointer

2005-09-16 Thread jeff at panasas dot com
--- Additional Comments From jeff at panasas dot com 2005-09-16 14:50 --- (In reply to comment #3) > This works for me with 4.1.0 but I really think it is just an accident. > /[EMAIL PROTECTED]@*/ int cr0; /* really, it's used, but lclint doesn't > "get" __asm__ */ > This comment d

[Bug middle-end/23903] Duplicate dump file numbers

2005-09-16 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-16 15:11 --- Subject: Bug 23903 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-09-16 15:11:22 Modified files: gcc: ChangeLog passes.c Log message:

[Bug middle-end/23903] Duplicate dump file numbers

2005-09-16 Thread bonzini at gcc dot gnu dot org
--- Additional Comments From bonzini at gcc dot gnu dot org 2005-09-16 15:18 --- fixed -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug objc/20444] [3.4/4.0 Regression] Misleading error message on missing ';'

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 15:31 --- Since this is only a diagnostic issue and it has been fixed on the mainline by the new parser, closing as fixed for 4.1.0. -- What|Removed |Added --

[Bug c++/23914] [4.0/4.1 Regression] further 'non-constant' template argument case exposed by Boost

2005-09-16 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-09-16 15:32 --- It's the same idea, but a different bug. -- What|Removed |Added AssignedTo|unassign

[Bug c++/21514] [DR 488] templates and anonymous enum

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

[Bug c++/23357] [4.1 Regression] ICE with __alignof__ on template arguments

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 15:42 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug c++/21514] [DR 488] templates and anonymous enum

2005-09-16 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-16 15:43 --- Subject: Bug 21514 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-16 15:43:14 Modified files: gcc/cp : Change

[Bug c++/21514] [DR 488] templates and anonymous enum

2005-09-16 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-09-16 15:47 --- Fixed in 4.0.2. -- What|Removed |Added Status|SUSPENDED |RESO

[Bug c++/21701] No flag to turn off warning: warning: template-argument `' uses anonymous type

2005-09-16 Thread mmitchel at gcc dot gnu dot org
-- Bug 21701 depends on bug 21514, which changed state. Bug 21514 Summary: [DR 488] templates and anonymous enum http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21514 What|Old Value |New Value

[Bug c++/21701] No flag to turn off warning: warning: template-argument `' uses anonymous type

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 16:01 --- Since PR 21514 is now closed as fixed, I am just going to close this as a dup of bug 21514 since we accept the code unconditionally now. *** This bug has been marked as a duplicate of 21514 *** --

[Bug c++/21514] [DR 488] templates and anonymous enum

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 16:01 --- *** Bug 21701 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21514

[Bug libfortran/23889] non intuitive behaviour of gfortran

2005-09-16 Thread kargl at gcc dot gnu dot org
--- Additional Comments From kargl at gcc dot gnu dot org 2005-09-16 16:09 --- Switch Severity to enhanacement (although I disagree the basic premise). -- What|Removed |Added

[Bug rtl-optimization/23857] [4.1 Regression] ICE: verify_flow_info failed - too many outgoing branch edges

2005-09-16 Thread janis at gcc dot gnu dot org
--- Additional Comments From janis at gcc dot gnu dot org 2005-09-16 16:19 --- A regression hunt using a cross compiler identified this patch from steven: http://gcc.gnu.org/ml/gcc-cvs/2005-07/msg00960.html -- What|Removed |Added --

[Bug fortran/23922] New: ICE trying to fold_convert a REAL_TYPE to a RECORD_TYPE

2005-09-16 Thread steven at gcc dot gnu dot org
MODULE bug IMPLICIT NONE TYPE :: my_type REAL :: x END TYPE TYPE (my_type), DIMENSION(3) :: t CONTAINS SUBROUTINE foo INTEGER, DIMENSION(8):: c(3) t(c)%x = t(c)%x RETURN END SUBROUTINE foo END MODU

[Bug fortran/15502] [meta-bug] bugs needed for SPEC CPU 2K and 2K5/6 and 95

2005-09-16 Thread steven at gcc dot gnu dot org
-- What|Removed |Added BugsThisDependsOn||23922 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15502

[Bug fortran/23922] ICE trying to fold_convert a REAL_TYPE to a RECORD_TYPE

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 16:42 --- Confirmed, reduced testcase: MODULE bug IMPLICIT NONE TYPE :: my_type REAL :: x END TYPE TYPE (my_type) :: t(3) CONTAINS SUBROUTINE foo INTEGER:: c(3) t(c)%x = t(c)%x RETUR

[Bug fortran/23922] ICE trying to fold_convert a REAL_TYPE to a RECORD_TYPE

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 16:43 --- Oh, this is a dup of bug 18157. *** This bug has been marked as a duplicate of 18157 *** -- What|Removed |Added -

[Bug fortran/18157] ice-on-valid code, pointer to user-defined type, fold-struct.c

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 16:43 --- *** Bug 23922 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug fortran/15502] [meta-bug] bugs needed for SPEC CPU 2K and 2K5/6 and 95

2005-09-16 Thread pinskia at gcc dot gnu dot org
-- Bug 15502 depends on bug 23922, which changed state. Bug 23922 Summary: ICE trying to fold_convert a REAL_TYPE to a RECORD_TYPE http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23922 What|Old Value |New Value --

[Bug fortran/18157] ice-on-valid code, pointer to user-defined type, fold-struct.c

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 16:47 --- Backtrace: #1 0x08179a9f in fancy_abort (file=Could not find the frame base for "fancy_abort". ) at /home/peshtigo/pinskia/src/gnu/gcc/src/gcc/diagnostic.c:590 #2 0x081ff931 in fold_convert (type=0xb7c336

[Bug rtl-optimization/23857] [4.1 Regression] ICE: verify_flow_info failed - too many outgoing branch edges

2005-09-16 Thread steven at gcc dot gnu dot org
--- Additional Comments From steven at gcc dot gnu dot org 2005-09-16 16:53 --- Huh, I better look at this bug then, eh? -- What|Removed |Added AssignedTo|unassigne

[Bug rtl-optimization/23857] [4.1 Regression] ICE: verify_flow_info failed - too many outgoing branch edges

2005-09-16 Thread steven at gcc dot gnu dot org
--- Additional Comments From steven at gcc dot gnu dot org 2005-09-16 17:01 --- Not being a C++ fan, I reduced it to this C test case: == extern int *F2 (void) __attribute__ ((__const__)); void S4 (int *i) { int *D2171; D2171 = F2 (); L0:

[Bug target/22584] [4.1 Regression] ICE in make_decl_rtl, at varasm.c:886

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 17:49 --- (In reply to comment #9) > ./configure... > > make -C obj-i686-pld-linux \ > STAGE1_CFLAGS="-march=i686 -O0" \ > BOOT_CFLAGS="-march=i686 -O2" I am testing with these options right now. -- http://

[Bug rtl-optimization/22469] [4.1 regression] testsuite failure, gcc.c-torture/compile/941014-2.c -O3 loops

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 17:54 --- MMIX is not a primary or secondary target. -- What|Removed |Added Target Milestone|4.1.0

[Bug c/23104] [4.1 Regression] C does not reject the same function in two different TUs with -combine

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 17:55 --- I am going to fix this since PR 22052 was really caused by me. -- What|Removed |Added

[Bug middle-end/20939] ld segmentation fault linking libgfortran.sl.0.0

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 17:56 --- Since this sounds like a GNU ld bug and not a GCC bug, removing the regression marker. -- What|Removed |Added ---

[Bug fortran/23202] [4.1 Regression] internal compiler error: tree check: expected ssa_name, have var_decl in verify_ssa, at tree-ssa.c:746

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 17:59 --- Since this is a fortran front-end bug, moving to 4.2. -- What|Removed |Added Keywo

[Bug c++/23797] [3.4/4.0/4.1 Regression] ICE on typename outside template

2005-09-16 Thread janis at gcc dot gnu dot org
--- Additional Comments From janis at gcc dot gnu dot org 2005-09-16 18:08 --- The ICE begins on mainline with this patch from giovannibajo: http://gcc.gnu.org/ml/gcc-cvs/2004-03/msg00874.html -- What|Removed |Added

[Bug ada/20753] ACATS ce3810b segfault at runtime on hppa-linux

2005-09-16 Thread laurent at guerby dot net
--- Additional Comments From laurent at guerby dot net 2005-09-16 18:15 --- Also happens the same way (run time core dump) on 4.0.2 20050913 (prerelease) on sparc-linux. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20753

[Bug c++/13140] declaration in global namespace, definition inside named or anon namespace

2005-09-16 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-09-16 18:16 --- Fixed on mainline. -- What|Removed |Added Status|NEW |

[Bug ada/20753] ACATS ce3810b segfault at runtime on hppa-linux

2005-09-16 Thread christian dot joensson at gmail dot com
-- What|Removed |Added CC||christian dot joensson at ||gmail dot com http://gcc.gnu.org/bu

[Bug c++/23914] [4.0/4.1 Regression] further 'non-constant' template argument case exposed by Boost

2005-09-16 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-16 18:33 --- Subject: Bug 23914 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-09-16 18:33:35 Modified files: gcc/cp : parser.c ChangeLog gcc/tests

[Bug c++/23914] [4.0/4.1 Regression] further 'non-constant' template argument case exposed by Boost

2005-09-16 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-16 18:36 --- Subject: Bug 23914 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-16 18:35:59 Modified files: gcc/cp : parser

[Bug c++/23914] [4.0/4.1 Regression] further 'non-constant' template argument case exposed by Boost

2005-09-16 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-09-16 18:37 --- Fixed in 4.0.2. -- What|Removed |Added Status|ASSIGNED|RESO

[Bug c/22052] [4.0 Regression] redefinition of inline function succeeds

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 18:43 --- I have a fix for the mainline which also fixes this and 23104 and reverting back to the old code which was added for 19152. -- What|Removed |Added -

[Bug fortran/23516] IMAG is not a generic function when implicit none is declared

2005-09-16 Thread kargl at gcc dot gnu dot org
--- Additional Comments From kargl at gcc dot gnu dot org 2005-09-16 18:46 --- http://gcc.gnu.org/ml/gcc-patches/2005-09/msg01004.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23516

[Bug ada/20753] ACATS ce3810b segfault at runtime on hppa-linux

2005-09-16 Thread christian dot joensson at gmail dot com
--- Additional Comments From christian dot joensson at gmail dot com 2005-09-16 18:48 --- on 4.0 branch, this passed Aug 13, http://gcc.gnu.org/ml/gcc-testresults/2005-08/msg00840.html, but failed Sept. 2, http://gcc.gnu.org/ml/gcc-testresults/2005-09/msg00140.html. checking further...

[Bug ada/20753] ACATS ce3810b segfault at runtime on hppa-linux

2005-09-16 Thread ebotcazou at gcc dot gnu dot org
--- Additional Comments From ebotcazou at gcc dot gnu dot org 2005-09-16 18:50 --- Present on SPARC/Solaris too. It's a bug in the runtime. -- What|Removed |Added

[Bug target/22584] [4.1 Regression] ICE in make_decl_rtl, at varasm.c:886

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 18:55 --- This bootstrap just fine with the options you gave. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22584

[Bug target/21715] [4.0/4.1 regression] code-generation performance regression

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 19:04 --- 3.3.5 also fails. I think this is also related to the message on the gcc mailing list recently: http://gcc.gnu.org/ml/gcc/2005-09/msg00429.html This is looks related to 2 operand targets. --

[Bug ada/23788] s-taprop.adb:69:06: warning: cannot depend on "Interrupt_Operations" (wrong categorization)

2005-09-16 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Additional Comments From dave at hiauly1 dot hia dot nrc dot ca 2005-09-16 19:09 --- Subject: Re: s-taprop.adb:69:06: warning: cannot depend on "Interrupt_Operations" (wrong categorization) > May be this will work, could you try? > > *** s-tpinop.ads.~1.9.~ 2005-07-01 08:24

[Bug rtl-optimization/22002] [4.0 Regression] internal consistency failure with -funroll-loops

2005-09-16 Thread janis at gcc dot gnu dot org
--- Additional Comments From janis at gcc dot gnu dot org 2005-09-16 19:14 --- The test case passes on mainline starting with this patch from dje: http://gcc.gnu.org/ml/gcc-cvs/2005-03/msg01221.html -- What|Removed |Added --

[Bug ada/23788] s-taprop.adb:69:06: warning: cannot depend on "Interrupt_Operations" (wrong categorization)

2005-09-16 Thread laurent at guerby dot net
-- What|Removed |Added URL||http://gcc.gnu.org/ml/gcc- ||patches/2005- |

[Bug middle-end/23125] [4.0/4.1 Regression] OpenBSD's zic.c causes g++ but not gcc to segfault

2005-09-16 Thread mrs at apple dot com
--- Additional Comments From mrs at apple dot com 2005-09-16 19:39 --- radr://3934846 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23125

[Bug other/23923] New: Bug in inclhack.def prevents include header fix.

2005-09-16 Thread luke dot bakken at gmail dot com
The terminating here-document marker in the AAB_sun_memcpy fix doesn't match the opening marker. It needs to have an underscore added at the end. Thanks! $ diff inclhack.def inclhack.orig 196c196 < _EndOfHeader_; --- > _EndOfHeader; -- Summary: Bug in inclhack.def preven

[Bug target/23923] Bug in inclhack.def prevents include header fix.

2005-09-16 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Component|other |target http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23923

[Bug middle-end/23651] [4.1 Regression] ICE in GC

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 19:59 --- Rereducing on the mainline for x86_64-pc-linux with -m32. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23651

[Bug java/23891] [4.0 Regression] Problem folding static fields across packages

2005-09-16 Thread debian-gcc at lists dot debian dot org
--- Additional Comments From debian-gcc at lists dot debian dot org 2005-09-16 20:05 --- the patch, when applied to the 4.0 branch, let the bootstrap fail in libjava on at least i486-linux and ia64-linux Matthias /home/packages/gcc/4.0/gcc-4.0-4.0.1/build/gcc/gcj -B/home/packages/gcc

[Bug libstdc++/23871] [4.0 Regression] iostream operator<<(int) uses || on integral operands

2005-09-16 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-16 20:18 --- Subject: Bug 23871 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-16 20:18:11 Modified files: libstdc++-v3 : Change

[Bug c/23155] [4.0/4.1 Regression] Gimplification failed for union cast

2005-09-16 Thread janis at gcc dot gnu dot org
--- Additional Comments From janis at gcc dot gnu dot org 2005-09-16 20:22 --- The testcase from comment #5 ICEs starting with this patch from kenner: http://gcc.gnu.org/ml/gcc-cvs/2004-06/msg00881.html -- What|Removed |Added --

[Bug c++/18803] [3.4 regression] rejects access to operator() in template

2005-09-16 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-09-16 20:34 --- The backport of the fix for PR 18445 caused this. I'll try to backport the fix for PR18803, too. If that fails, reverting the patch for PR 18445 seems like the right thing to me, because this was only an ic

[Bug c++/18803] [3.4 regression] rejects access to operator() in template

2005-09-16 Thread nathan at gcc dot gnu dot org
--- Additional Comments From nathan at gcc dot gnu dot org 2005-09-16 20:57 --- IMHO reverting 18445 would be the most prudent thing to do. The combination of 18845+18803 are touching too many things for my liking. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18803

[Bug c++/18803] [3.4 regression] rejects access to operator() in template

2005-09-16 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2005-09-16 21:04 --- On 16 Sep, nathan at gcc dot gnu dot org wrote: > IMHO reverting 18445 would be the most prudent thing to do. The combination > of 18845+18803 are touching too many things for my liking. Gaby, would that

[Bug fortran/23924] New: No initialization of derived type pointers/allocatables when allocated

2005-09-16 Thread erik dot edelmann at iki dot fi
$ cat erik.f90 program test type t real :: a = 3.1 end type t type(t), pointer :: p type(t), allocatable :: q(:) allocate(p) print *, p%a allocate(q(1)) print *, q(1)%a end program test $ gfortran erik.f90 $ a.out 0.00 0.00 The output I had expected

[Bug fortran/23924] No initialization of derived type pointers/allocatables when allocated

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 21:49 --- Hmm, I get: In file t.f90:2 type t 1 Error: Pointer assignment target is neither TARGET nor POINTER at (1) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23924

[Bug fortran/23924] No initialization of derived type pointers/allocatables when allocated

2005-09-16 Thread erik dot edelmann at iki dot fi
--- Additional Comments From erik dot edelmann at iki dot fi 2005-09-16 21:59 --- (In reply to comment #1) > Hmm, I get: > In file t.f90:2 > > type t >1 > Error: Pointer assignment target is neither TARGET nor POINTER at (1) > Oh! I'm terribly sorry; I used a locally modif

[Bug c++/18803] [3.4 regression] rejects access to operator() in template

2005-09-16 Thread gdr at integrable-solutions dot net
--- Additional Comments From gdr at integrable-solutions dot net 2005-09-16 22:40 --- Subject: Re: [3.4 regression] rejects access to operator() in template "reichelt at gcc dot gnu dot org" <[EMAIL PROTECTED]> writes: | On 16 Sep, nathan at gcc dot gnu dot org wrote: | > IMHO reverti

[Bug fortran/23925] New: HDF5 check fails--type conversions

2005-09-16 Thread swhite at aei dot mpg dot de
Build of hdf5-1.6.4 with Fortran module fails checks, although same build with Intel 8.1 pass. Looks like it's primarily with conversions between particular data types. See http://hdf.ncsa.uiuc.edu/HDF5/ ./configure --enable-fortran make make check I want to emphasize that HDF5 is a very import

[Bug c++/23651] [4.1 Regression] ICE in GC

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 22:58 --- lets look at the backtrace: gt_ggc_mx_cp_binding_level gt_ggc_mx_cxx_binding Why are there are references to C++ front-end stuff. This is a front-end bug make us still reference a BasicBlock. --

[Bug fortran/23925] HDF5 check fails--type conversions

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 23:01 --- How does it fail and is there a simple testcase? -- What|Removed |Added CC|

[Bug tree-optimization/23818] [4.1 Regression] ICE in dominated_by_p, at dominance.c:827

2005-09-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16 23:05 --- (In reply to comment #3) > Patch posted. And approved. -- What|Removed |Added Assig

[Bug fortran/15975] ICE in trans-array.c pointer array initialization stuff

2005-09-16 Thread erik dot edelmann at iki dot fi
--- Additional Comments From erik dot edelmann at iki dot fi 2005-09-16 23:07 --- Patch posted to mailinglist: http://gcc.gnu.org/ml/gcc-patches/2005-09/msg01032.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15975

[Bug fortran/16606] gfortran error with a valid derived type definition

2005-09-16 Thread erik dot edelmann at iki dot fi
--- Additional Comments From erik dot edelmann at iki dot fi 2005-09-16 23:08 --- Patch posted to the mailing list: http://gcc.gnu.org/ml/gcc-patches/2005-09/msg01032.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16606

[Bug classpath/20198] java.security.CodeSource.getLocation output is different than expected

2005-09-16 Thread green at redhat dot com
--- Additional Comments From green at redhat dot com 2005-09-16 23:10 --- (In reply to comment #1) > Created an attachment (id=9352) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9352&action=view) > Proposed patch > > This patch makes your test program emit an absolute path. > >

[Bug fortran/23925] HDF5 check fails--type conversions

2005-09-16 Thread swhite at aei dot mpg dot de
--- Additional Comments From swhite at aei dot mpg dot de 2005-09-16 23:12 --- Andrew, The "make check" command runs through a battery of tests. With gfortran, it reports 72 failures, while with the Intel compiler, it passes everything. I'm not sure what you're referring to regarding

[Bug classpath/20198] java.security.CodeSource.getLocation output is different than expected

2005-09-16 Thread cvs-commit at developer dot classpath dot org
--- Additional Comments From cvs-commit at developer dot classpath dot org 2005-09-16 23:12 --- Subject: Bug 20198 CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Anthony Green <[EMAIL PROTECTED]> 05/09/16 22:52:18 Modified files:

  1   2   >