[Bug c++/24512] [gomp] Bogus error message about redeclared variables

2005-10-25 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jakub at gcc dot gnu dot org |dot org

[Bug fortran/21625] [4.0 only] Nested derived type pointer component not initialized on ALLOCATE

2005-10-25 Thread cvs-commit at gcc dot gnu dot org
--- Comment #12 from cvs-commit at gcc dot gnu dot org 2005-10-25 08:04 --- Subject: Bug 21625 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED]2005-10-25 08:04:09 Modified files: gcc/fortran: ChangeLog trans-

[Bug fortran/21625] [4.0 only] Nested derived type pointer component not initialized on ALLOCATE

2005-10-25 Thread eedelman at gcc dot gnu dot org
--- Comment #13 from eedelman at gcc dot gnu dot org 2005-10-25 08:07 --- With Richard Henderson's patch, things should now work on 4.0 too. Thus, I declare this bug fixed. -- eedelman at gcc dot gnu dot org changed: What|Removed |Added -

[Bug c/24514] New: ICE on bootstrap

2005-10-25 Thread r dot emrich at de dot tecosim dot com
bootstrapping gives ICE in c-parser.o for gcc-4.1-20051022 stage1/xgcc -Bstage1/ -B/SCRATCH/gcc-build/IRIX64/mips-sgi-irix6.5/install/mips-sgi-irix6.5/bin/ -c -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmiss ing-prototypes -pedantic -Wno-long-long -Wno-variadic-macros -Wold-

[Bug middle-end/24003] [4.1 Regression] ACATS FAIL 17 regressions on x86-linux, fixed and decimal arithmetic broken

2005-10-25 Thread ebotcazou at gcc dot gnu dot org
--- Comment #21 from ebotcazou at gcc dot gnu dot org 2005-10-25 09:26 --- OK, confirmed with a pristine tree on i686. -- ebotcazou at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug c++/24513] [gomp] Parsing problems with OpenMP directives inside member functions

2005-10-25 Thread jakub at gcc dot gnu dot org
--- Comment #2 from jakub at gcc dot gnu dot org 2005-10-25 09:31 --- openmp keyword is enough. -- jakub at gcc dot gnu dot org changed: What|Removed |Added Assig

[Bug c++/24515] New: internal compiler error: in write_builtin_type, at cp/mangle.c:1784

2005-10-25 Thread annabellesgarden at yahoo dot de
command: "gcc -g -Wall vector_bug.cc -lstdc++" results in error message: "vector_bug.cc:5: internal compiler error: in write_builtin_type, at cp/mangle.c:1784 Please submit a full bug report, with preprocessed source if appropriate." preprocessed source: // /usr/libexec/gcc/x86_64-redhat-linu

[Bug c++/24515] internal compiler error: in write_builtin_type, at cp/mangle.c:1784

2005-10-25 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2005-10-25 10:31 --- Fixed in 4.0.2 (at least). ./cc1plus -quiet -o /dev/null -Wall /tmp/t.C /tmp/t.C: In function ‘int main(int, char**)’: /tmp/t.C:22: error: no matching function for call to ‘V4sf::set4(float&)’ /tmp/t.C:9: note: can

[Bug c++/24513] [gomp] Parsing problems with OpenMP directives inside member functions

2005-10-25 Thread martin at mpa-garching dot mpg dot de
--- Comment #3 from martin at mpa-garching dot mpg dot de 2005-10-25 11:26 --- This patch appears to work very well, thanks! However, later in my code I run into a problem of the following sort: The (patched) compiler rejects the following code void bar (int *p) { #pragma omp para

[Bug c++/24513] [gomp] Parsing problems with OpenMP directives inside member functions

2005-10-25 Thread jakub at gcc dot gnu dot org
--- Comment #4 from jakub at gcc dot gnu dot org 2005-10-25 11:34 --- That's unrelated. Please file a different bug (and make sure it has openmp keyword). Thanks. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24513

[Bug c++/16625] Discarded Linkonce sections in .rodata

2005-10-25 Thread hidden_peak at mail dot ru
--- Comment #21 from hidden_peak at mail dot ru 2005-10-25 11:46 --- May be is not gcc bug, but ld: the sample work with GNU ld version 2.12.90.0.1 20020307 Debian/GNU Linux, work with warnings with GNU ld version 2.15.94.0.2.2 20041220 (SuSE Linux) and don't work with ld 2.16.x (all wit

[Bug c++/24516] New: [openmp] Incorrect error for break statement in OpenMP loop

2005-10-25 Thread martin at mpa-garching dot mpg dot de
The current gomp branch (including Jakub Jelinek's proposed patch for PR24513, rejects the following code: void bar (int *p) { #pragma omp parallel for for (int m=0; m<1000; ++m) { switch(p[m]) { case 1: p[m]=2; break; } } }

[Bug c/24517] New: casting problem

2005-10-25 Thread Wojciech dot Skaba at teleadreson dot com dot pl
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/3.3.3/specs Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --disable-libunwind-exceptions --with-system-zlib --enable-__cxa_atexit --host=i3

[Bug c/24517] casting problem

2005-10-25 Thread falk at debian dot org
--- Comment #1 from falk at debian dot org 2005-10-25 12:40 --- (In reply to comment #0) >*memptr++ = (unsigned char)donothing(*memptr, 0); This expression modifies memptr after accessing it for something other than determining the new value without an intervening sequence point. T

[Bug fortran/24518] New: Intrinsic MOD incorrect for large arg1/arg2 and slow.

2005-10-25 Thread paul dot richard dot thomas at cea dot fr
This: real*8 :: x = 10.0e9 do i = 10, 22 x = 10d0 * x print '(a,i2,a,g14.8)', "mod (10**",i,", 1.7_8) = ",mod (x, 1.7_8) end do end does this with cvs gfortran mod (10**10, 1.7_8) = 1.326 mod (10**11, 1.7_8) = 1.1000261 mod (10**12, 1.7_8) = 0.80026150 mod (10**13, 1.7_8) =

[Bug fortran/24519] New: gfortran slow because of incomplete dependency checking

2005-10-25 Thread paul dot richard dot thomas at cea dot fr
This PR is concerned with gfortran's performance relative to commercial compilers in respect of Polyhedron's TEST_FPU.F90. Baseline(test_fpu.f90 out of the box): gfortran 20050903 -fmax-stack-var-size=100 -O2 Benchmark running, hopefully as only ACTIVE task Test1 - Gauss 2000 (101x101) inv

[Bug fortran/24520] New: Temporary constant array descriptors being declared at wrong binding level.

2005-10-25 Thread paul dot richard dot thomas at cea dot fr
Posted in: http://gcc.gnu.org/ml/fortran/2005-10/msg00443.html I have been investigating the relatively poor performance of gfortran for some of the Polyhedron Benchmark Tests (www.polyhedron.com). I already discussed a couple of days ago how test_fpu.f90 exposed some weakness in the dependency a

[Bug fortran/22290] Optimize Assigned GOTO to cause error with -O1 or higher

2005-10-25 Thread cvs-commit at gcc dot gnu dot org
--- Comment #11 from cvs-commit at gcc dot gnu dot org 2005-10-25 13:44 --- Subject: Bug 22290 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED]2005-10-25 13:44:46 Modified files: gcc/testsuite : ChangeLog

[Bug fortran/24520] Temporary constant array descriptors being declared at wrong binding level.

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added CC||pinskia at gcc dot gnu dot |

[Bug fortran/24519] gfortran slow because of incomplete dependency checking

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-10-25 13:47 --- Confirmed, I saw this while working on another bug. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug c/24521] New: internal compiler error (segmentation fault) when compiling xorg-x11 6.8.2

2005-10-25 Thread redeeman at metanurb dot dk
this is the output i get: including in doc/man/misc... making all in ./include... making all in include/bitmaps... making all in include/extensions... making all in include/fonts... making all in include/GL... making all in include/DPS... making all in ./config... making all in config/cf... making

[Bug fortran/24519] gfortran slow because of incomplete dependency checking

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-10-25 13:55 --- Woops wrong button. One more testcase which looks like will show up in SPEC 2k5: temp = # c = # DO j = 1, n b(array) = b(array)-temp*c END DO We have a couple of temps here, two for array

[Bug c/24521] internal compiler error (segmentation fault) when compiling xorg-x11 6.8.2

2005-10-25 Thread redeeman at metanurb dot dk
--- Comment #1 from redeeman at metanurb dot dk 2005-10-25 13:56 --- Created an attachment (id=10054) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10054&action=view) cc5F7DsV.out this is the output thing it talks about in the error message -- http://gcc.gnu.org/bugzilla/show

[Bug middle-end/24521] internal compiler error (segmentation fault) when compiling xorg-x11 6.8.2

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-10-25 13:56 --- Did you read: See http://bugs.gentoo.org/> for instructions. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/24521] internal compiler error (segmentation fault) when compiling xorg-x11 6.8.2

2005-10-25 Thread redeeman at metanurb dot dk
--- Comment #3 from redeeman at metanurb dot dk 2005-10-25 14:03 --- bugs.gentoo.org is just a bugzilla - but i figure this is not a gentoo problem. i guy told me to report it to gcc's bugzilla. so i did. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24521

[Bug fortran/22290] Optimize Assigned GOTO to cause error with -O1 or higher

2005-10-25 Thread cvs-commit at gcc dot gnu dot org
--- Comment #12 from cvs-commit at gcc dot gnu dot org 2005-10-25 14:06 --- Subject: Bug 22290 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED]2005-10-25 14:06:23 Modified files: gcc/testsuite : ChangeLog gcc/fortran: ChangeLog t

[Bug fortran/22290] Optimize Assigned GOTO to cause error with -O1 or higher

2005-10-25 Thread fengwang at gcc dot gnu dot org
--- Comment #13 from fengwang at gcc dot gnu dot org 2005-10-25 14:09 --- Fixed. -- fengwang at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIG

[Bug middle-end/24521] internal compiler error (segmentation fault) when compiling xorg-x11 6.8.2

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2005-10-25 14:16 --- This works for me, so it has to be a patch which gentoo adds. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug fortran/24518] Intrinsic MOD incorrect for large arg1/arg2 and slow.

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-10-25 14:37 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added CC|

[Bug fortran/24520] Temporary constant array descriptors being declared at wrong binding level.

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-10-25 14:39 --- Confirmed (note IE sucks). -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/24521] internal compiler error (segmentation fault) when compiling xorg-x11 6.8.2

2005-10-25 Thread redeeman at metanurb dot dk
--- Comment #5 from redeeman at metanurb dot dk 2005-10-25 14:40 --- hmm ok.. do you think it could be because it is a 32bit chroot within a 64bit install? anyway, i will try a vanilla gcc 4.0.2, and get back to you later today or tomorow perhaps (more likely) -- http://gcc.gnu.org

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

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #12 from pinskia at gcc dot gnu dot org 2005-10-25 14:59 --- Patch posted: http://gcc.gnu.org/ml/gcc-patches/2005-10/msg01489.html -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug libfortran/24489] read_block wrong execution order

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24489

[Bug java/17574] [meta-bug] gcj and libgcj 4.0 tracking PR

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.0.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17574

[Bug c++/100] confusing name lookup diagnostic

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=100

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

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23911

[Bug libgcj/24147] [gcc 4.0 only] Deadlock in java.net.URLClassLoader

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.0.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24147

[Bug fortran/22290] Optimize Assigned GOTO to cause error with -O1 or higher

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.0.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22290

[Bug swing/17362] Scrollbars in JScrollPane appear only if the Container containing JScrollPane is revalidated

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |0.19 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17362

[Bug preprocessor/15067] [3.4/4.0 Regression] Minor glitch in the source of cpp.

2005-10-25 Thread cvs-commit at gcc dot gnu dot org
--- Comment #6 from cvs-commit at gcc dot gnu dot org 2005-10-25 15:05 --- Subject: Bug 15067 CVSROOT:/cvs/gcc Module name:gcc Branch: csl-arm-branch Changes by: [EMAIL PROTECTED] 2005-10-25 15:05:37 Modified files: gcc: ChangeLog Chang

[Bug c++/24516] [gomp] Incorrect error for break statement in OpenMP loop

2005-10-25 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jakub at gcc dot gnu dot org |dot org

[Bug tree-optimization/24483] [4.1 Regression] ICE in ivopts

2005-10-25 Thread steven at gcc dot gnu dot org
--- Comment #1 from steven at gcc dot gnu dot org 2005-10-25 15:30 --- Backtrace: Breakpoint 1, fancy_abort (file=0xb1cc18 "../../mainline/gcc/tree-ssa-loop-ivopts.c", line=2948, function=0xb1d0bb "aff_combination_to_tree") at diagnostic.c:590 590 internal_error ("in %s, at %s

[Bug middle-end/24003] [4.1 Regression] ACATS FAIL 17 regressions on x86-linux, fixed and decimal arithmetic broken

2005-10-25 Thread ebotcazou at gcc dot gnu dot org
--- Comment #22 from ebotcazou at gcc dot gnu dot org 2005-10-25 15:33 --- Jan, > Can you please check if -fno-tree-ter makes the bug go away? We've > chatted recently with Jakub concerning bug in argument saving in nested > call and -maccumulate-outgoing-args. I was under impression

[Bug libstdc++/19664] libstdc++ headers should have pop/push of the visibility around the declarations

2005-10-25 Thread mueller at kde dot org
--- Comment #74 from mueller at kde dot org 2005-10-25 15:41 --- yes, well one reason for it is that several libs (e.g. libgcc2) already use push/pop visibility macros and it doesn't seem to harm. furthermore I manually added push/pop macros to libstdc++ headers on a debian system (whi

[Bug libstdc++/19664] libstdc++ headers should have pop/push of the visibility around the declarations

2005-10-25 Thread pcarlini at suse dot de
--- Comment #75 from pcarlini at suse dot de 2005-10-25 15:44 --- (In reply to comment #74) > furthermore I manually added push/pop macros to libstdc++ headers on a debian > system (which is broken regarding visibility support) and it made my testcase > pass. To be clear: I have nothin

[Bug tree-optimization/24483] [4.1 Regression] ICE in ivopts

2005-10-25 Thread rakdver at atrey dot karlin dot mff dot cuni dot cz
--- Comment #2 from rakdver at atrey dot karlin dot mff dot cuni dot cz 2005-10-25 15:56 --- Subject: Re: [4.1 Regression] ICE in ivopts Hello, > Breakpoint 1, fancy_abort (file=0xb1cc18 > "../../mainline/gcc/tree-ssa-loop-ivopts.c", > line=2948, function=0xb1d0bb "aff_combinatio

[Bug rtl-optimization/23567] [3.4/4.0/4.1 regression] if-conversion causes wrong code

2005-10-25 Thread steven at gcc dot gnu dot org
--- Comment #5 from steven at gcc dot gnu dot org 2005-10-25 16:24 --- Jakub, ping! Are you going to post your patch from comment #4?? -- steven at gcc dot gnu dot org changed: What|Removed |Added --

[Bug c++/24522] New: htonl in optimized template function generates compiler warning

2005-10-25 Thread ckillian at cs dot ucsd dot edu
Overview Description: More detailed expansion of summary. When compiling template functions in g++ 4.0.2 (Debian 4.0.2-2) (Debian testing/unstable) with -O2 and -Wall, the compiler generates a warning about a statement with no effect. This seems to be due to the inlining with __v; as a st

[Bug c++/24522] htonl in optimized template function generates compiler warning

2005-10-25 Thread ckillian at cs dot ucsd dot edu
--- Comment #1 from ckillian at cs dot ucsd dot edu 2005-10-25 16:26 --- Created an attachment (id=10055) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10055&action=view) The test.cc file -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24522

[Bug c++/24522] htonl in optimized template function generates compiler warning

2005-10-25 Thread ckillian at cs dot ucsd dot edu
--- Comment #2 from ckillian at cs dot ucsd dot edu 2005-10-25 16:26 --- Created an attachment (id=10056) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10056&action=view) preprocessor output -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24522

[Bug c++/24522] htonl in optimized template function generates compiler warning

2005-10-25 Thread ian at airs dot com
--- Comment #3 from ian at airs dot com 2005-10-25 16:36 --- I believe this winds up being a duplicate of PR c++/8057, which is fixed on mainline. With the test case in the PR, I see the warning with 4.0, but I do not see the warning on mainline. Note that this slightly modified test c

[Bug c++/24522] htonl in optimized template function generates compiler warning

2005-10-25 Thread ckillian at cs dot ucsd dot edu
--- Comment #4 from ckillian at cs dot ucsd dot edu 2005-10-25 17:09 --- (In reply to comment #3) > I believe this winds up being a duplicate of PR c++/8057, which is fixed on > mainline. With the test case in the PR, I see the warning with 4.0, but I do > not see the warning on mainli

[Bug c++/24522] htonl in optimized template function generates compiler warning

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2005-10-25 17:51 --- Here is a reduced testcase: template void f(int i) { int i1 = (__extension__ ({int i2 = i; i2;})); } -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug c++/24522] [4.0 Regression] htonl in optimized template function generates compiler warning

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2005-10-25 17:59 --- (In reply to comment #3) > I believe this winds up being a duplicate of PR c++/8057, which is fixed on > mainline. With the test case in the PR, I see the warning with 4.0, but I do > not see the warning on mainline

[Bug fortran/24524] New: Fortran dependency checking should reverse loops

2005-10-25 Thread pinskia at gcc dot gnu dot org
program testcase_fold real, dimension(:), pointer :: mystruct mystruct(1:3) = mystruct(2:4) END Program testcase_fold That loop should be transvered in reverse oder so that we don't need a temporary array. -- Summary: Fortran dependency checking should reverse loops Pr

[Bug fortran/24519] gfortran slow because of incomplete dependency checking

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-10-25 18:14 --- Another issue is that we should be able to reverse the loop too, see PR 24524 for a testcase for that (which I got the idea from Tobias in the email about my patch which fixes a related bug to temporary arrays). --

[Bug testsuite/24477] [4.1 Regression] g++.old-deja/g++.abi/vtable2.C (test for excess errors) fails

2005-10-25 Thread aoliva at gcc dot gnu dot org
-- aoliva at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |aoliva at gcc dot gnu dot |dot org

[Bug middle-end/24295] [4.1 Regression] Xorg broken, #pragma weak foo = bar no longer causes bar to be referenced

2005-10-25 Thread cvs-commit at gcc dot gnu dot org
--- Comment #22 from cvs-commit at gcc dot gnu dot org 2005-10-25 18:59 --- Subject: Bug 24295 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-10-25 18:59:21 Modified files: gcc/testsuite : ChangeLog gcc/testsuite/g++.old-deja

[Bug testsuite/24477] [4.1 Regression] g++.old-deja/g++.abi/vtable2.C (test for excess errors) fails

2005-10-25 Thread cvs-commit at gcc dot gnu dot org
--- Comment #2 from cvs-commit at gcc dot gnu dot org 2005-10-25 18:59 --- Subject: Bug 24477 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-10-25 18:59:21 Modified files: gcc/testsuite : ChangeLog gcc/testsuite/g++.old-deja/

[Bug testsuite/24477] [4.1 Regression] g++.old-deja/g++.abi/vtable2.C (test for excess errors) fails

2005-10-25 Thread aoliva at gcc dot gnu dot org
--- Comment #3 from aoliva at gcc dot gnu dot org 2005-10-25 18:59 --- Fixed -- aoliva at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug testsuite/20360] 20021014-1.c fails on account of unsupported build option

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|normal |minor Component|target |testsuite GCC

[Bug bootstrap/20437] bootstrap --enable-maintainer-mode broken

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-10-25 19:18 --- I don't think --enable-maintainer-mode will ever work until the top level directory is changed to 2.53 autoconf. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug libstdc++/20448] locale testsuite fails when GCC is configured with --disable-nls

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last reconfi

[Bug c++/24525] New: g++ fails to warn when converting UDT through double to int

2005-10-25 Thread georgeh at rentec dot com
g++-4.0.0 compiles the following code without warning, with both -Wconversion and -Wall turned on. Since it is converting the UDT into a double, then converting the double to an int, I believe it should warn exactly as it does in the case when the commented-out line is used in place of the direct a

[Bug middle-end/20623] ICE: fold check: original tree changed by fold with --enable-checking=fold

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2005-10-25 19:19 --- Can you try this again, I think these are all fixed now? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20623

[Bug middle-end/20937] BLK ptr's losing original ptr's static-constant readonly attribute.

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2005-10-25 19:22 --- (In reply to comment #6) > - For some reason, GCC is casting "char" to "int" prior to returning their > value as a "char", which >although works, is a fairly gross mis-optimization? (which should also > likely

[Bug c++/24525] g++ fails to warn when converting UDT through double to int

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-10-25 19:26 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|norma

[Bug java/21070] [4.1 Regression]: java compiler generates wrong code on ia64

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #11 from pinskia at gcc dot gnu dot org 2005-10-25 19:39 --- Is this now fixed? -- pinskia at gcc dot gnu dot org changed: What|Removed |Added St

[Bug other/21071] libtool doesn't use just built libunwind

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-10-25 19:40 --- Is this a bug in libtool, can you report to them and then please suspend this bug. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21071

[Bug libfortran/21185] libgfortran unusable for cross-testing for newlib targets

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-10-25 19:44 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON

[Bug middle-end/21190] [4.1 Regression] g-spitbo.adb:274: error: unrecognizable insn

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-10-25 19:45 --- I think this working again, right? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21190

[Bug fortran/21253] Bounds Check

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2005-10-25 19:45 --- We need a testcase. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Sta

[Bug target/21408] DAZ related macros are improperly guarded in pmmintrin.h

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-10-25 19:46 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|norma

[Bug c/21664] array-of-empty-structure extension not properly defined

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-10-25 19:47 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|norma

[Bug middle-end/21781] real.c incorrectly values zero with a large exponent

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-10-25 19:49 --- Confirmed, testcase which shows this is also a rejects valid: int f[.0e2 == 0?1:-1]; -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/24526] New: variables from modules not visible in gdb

2005-10-25 Thread tkoenig at gcc dot gnu dot org
$ cat module.f90 module foo real :: a end module foo program main use foo, only : a a = 42. print *,a end program main $ gfortran -g module.f90 $ gdb ./a.out GNU gdb 6.3-debian Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, an

[Bug middle-end/21190] [4.1 Regression] g-spitbo.adb:274: error: unrecognizable insn

2005-10-25 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Comment #4 from dave at hiauly1 dot hia dot nrc dot ca 2005-10-25 19:52 --- Subject: Re: [4.1 Regression] g-spitbo.adb:274: error: unrecognizable insn > --- Comment #3 from pinskia at gcc dot gnu dot org 2005-10-25 19:45 > --- > I think this working again, right? Right,

[Bug c++/21802] Two-stage name lookup fails for operations

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-10-25 19:53 --- Confirmed, not a regression. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/21190] [4.1 Regression] g-spitbo.adb:274: error: unrecognizable insn

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2005-10-25 19:57 --- Fixed so closing. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Statu

[Bug fortran/24527] New: derived types not displayed correctly

2005-10-25 Thread tkoenig at gcc dot gnu dot org
This may be a gdb bug, but anyway... cat type.f90 program main type foo real :: a integer :: b end type foo type(foo) :: q q = foo(3.14, 42) print *,q end program main $ gfortran -g type.f90 $ gdb ./a.out GNU gdb 6.3-debian Copyright 2004 Free Software Foundation, Inc. GDB is fr

[Bug rtl-optimization/22031] Poor code from unrolled simple loop

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-10-25 20:06 --- The second testcase works on x86_64 with -O2 -fschedule-insns -funroll-loops -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug libfortran/22097] libgfortran build failure on mips-sgi-irix6.5

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last reconfi

[Bug target/22209] [4.1 regression] libgfortran unresolvable symbols on irix6.5

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-10-25 20:11 --- The easiest way to make this go away, is to make TImode not a workable mode on mips64. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22209

[Bug rtl-optimization/22239] [4.0 Regression] i-cobol.adb:482: error: unrecognizable insn

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #12 from pinskia at gcc dot gnu dot org 2005-10-25 20:12 --- Fixed so closing as such. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug bootstrap/22408] make install fails after --enable-bootstrap=lean enabled bootstrap

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-10-25 20:13 --- Can you try this again, I think this has been fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/23359] [4.1 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last reconfi

[Bug ada/23487] Assignment from incompatible pointer warning in __gnat_install_handler kills bootstrap

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last reconfi

[Bug target/23524] [4.1 Regression]bigger version of mov + cmp produced

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|normal |minor Component|rtl-optimization|target

[Bug c++/23587] Missing "warning: comparison is always false due to limited range of data type"

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-10-25 20:23 --- We do have an inconstaincy here, with -W, I get a warning for all 6 of them. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug c/23587] Missing "warning: comparison is always false due to limited range of data type"

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-10-25 20:24 --- t.c: In function ‘void c(unsigned int)’: t.c:17: warning: comparison of unsigned expression < 0 is always false t.c: In function ‘void d(long unsigned int)’: t.c:23: warning: comparison of unsigned expression < 0 is

[Bug rtl-optimization/23726] Missed optimizations for divmod

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last reconfi

[Bug target/23740] attiny13 and attiny2313 are not fully supported

2005-10-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last reconfi

[Bug libfortran/23770] unaligned buffers in i/o library force use of memcpy()

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2005-10-25 20:34 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON

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

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2005-10-25 20:35 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRM

[Bug libgcj/17021] libgcj verifier resolves classes too eagerly

2005-10-25 Thread mckinlay at redhat dot com
--- Comment #14 from mckinlay at redhat dot com 2005-10-25 20:36 --- Robert, thanks very much for working on this. Examining the behaviour of Sun's verifier a bit more shows that it does attempt to resolve classes where type compatibility can not be proven by a simple string comparison,

[Bug c/24528] New: [ARM EB] strcpy() of small string constant produces wrong instructions

2005-10-25 Thread djohnson+gcc at sw dot starentnetworks dot com
Given the following c code from sysvinit's init.c: if (ch->action == SYSINIT) strcpy(ch->rlevel, "#"); gcc is producing the correct set of instructions for little endian arm, but incorrect set of instructions for big endian arm. That line when compiled with -mlittle-endian (correct):

[Bug c/24529] New: arm_print_operand, at config/arm/arm.c:9869

2005-10-25 Thread brian at bulkowski dot org
While compiling ntp-4.2.0 from an i86 host for arm, I received the following error. The host OS was recent linux (2.6.12 from a Fedora Core 3 base), but the GCC in question was a cross-compile environment aimed at an ARM720T. The file in question was 'a_md5encrypt.c' from the ntp-4.2.0 distribution

[Bug middle-end/17886] variable rotate and long long rotate should be better optimized

2005-10-25 Thread cvs-commit at gcc dot gnu dot org
--- Comment #22 from cvs-commit at gcc dot gnu dot org 2005-10-25 21:38 --- Subject: Bug 17886 CVSROOT:/cvs/gcc Module name:gcc Branch: apple-local-200502-branch Changes by: [EMAIL PROTECTED]2005-10-25 21:38:27 Modified files: gcc: Chang

[Bug libstdc++/24530] New: throw catch clause does not accept string

2005-10-25 Thread alienforever at gmail dot com
testcase: t.cpp #include #include using namespace std; void func_1( ) { string aCvla="func1"; throw aCvla; } void func_2 () { char aCvla[6]; strcpy (aCvla, "func2"); throw aCvla; } int main() { try { func_1(); } catch ( string &aCA ) { cout << aCA << endl; } try {

[Bug target/24529] arm_print_operand, at config/arm/arm.c:9869

2005-10-25 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-10-25 21:39 --- And it also asked you to attach the preprocessed source too. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

  1   2   >