[Bug fortran/26509] incorrect behaviour of error-handler for internal read

2006-03-10 Thread kloedej at knmi dot nl
--- Comment #15 from kloedej at knmi dot nl 2006-03-10 08:27 --- (In reply to comment #14) > All I'm saying is that in this situation there seems to be no way to jump > to some label if something goes wrong (because there is no EOR parameter > for WRITE). > But I agree that this is not

[Bug bootstrap/26628] Build fails trying to run ppc64 binaries on powerpc-apple-darwin8.5.0

2006-03-10 Thread malcolmpurvis at optushome dot com dot au
--- Comment #2 from malcolmpurvis at optushome dot com dot au 2006-03-10 08:40 --- (In reply to comment #1) > Use --disable-multilib. > This has fixed the problem. Thank you. However, I would query the determination that this is not a bug. I don't expect the default configuration o

[Bug c++/26605] using + function templates troubles

2006-03-10 Thread pcarlini at suse dot de
--- Comment #12 from pcarlini at suse dot de 2006-03-10 09:38 --- I sent a message to the CWG reflector, and people kindly replied (c++std-core-11367 to 11370). In a nutshell, 7.3.3/11 should be clarified for function templates (a new issue has been opened), but apparently there is conse

[Bug c++/21682] Disallowed using declaration

2006-03-10 Thread pcarlini at suse dot de
--- Comment #3 from pcarlini at suse dot de 2006-03-10 09:38 --- *** Bug 26605 has been marked as a duplicate of this bug. *** -- pcarlini at suse dot de changed: What|Removed |Added -

[Bug tree-optimization/26626] [4.2 Regression] ICE in in add_virtual_operand

2006-03-10 Thread rguenth at gcc dot gnu dot org
--- Comment #7 from rguenth at gcc dot gnu dot org 2006-03-10 10:40 --- The testcase is also full of problems itself... - changing rv to a type with the size of U, we no longer ICE. Also -fno-strict-aliasing fixes the ICE. I'm curious on how the original code looks like before reductio

[Bug tree-optimization/26626] [4.2 Regression] ICE in in add_virtual_operand

2006-03-10 Thread mueller at gcc dot gnu dot org
--- Comment #8 from mueller at gcc dot gnu dot org 2006-03-10 10:51 --- shorter testcase: === Cut === typedef union { int d; int L; } U; void breakme() { int rv; ovfl: ((U*)&rv)->d = 42; if (((U*)&rv)->L) goto ovfl; } === Cut === -- http://gcc.gnu.org/

[Bug tree-optimization/26626] [4.2 Regression] ICE in in add_virtual_operand

2006-03-10 Thread rguenth at gcc dot gnu dot org
--- Comment #9 from rguenth at gcc dot gnu dot org 2006-03-10 11:10 --- :; pretmp.23_2 = (union U *) &rv; # NMT.6_4 = PHI ; ovfl:; rv.0_1 = pretmp.23_2; # NMT.6_6 = V_MAY_DEF ; rv.0_1->d = 42; # VUSE ; D.1529_3 = rv.0_1->L; if (D.1529_3 != 0) goto ; else goto ; :;

[Bug c++/26621] Template instantiation fails for -O1 -finline-functions

2006-03-10 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2006-03-10 11:24 --- You need to make all templated definitions available in check_link.cc or explicitly instantiate all used templates in check_link.cc. -- rguenth at gcc dot gnu dot org changed: What|Removed

[Bug c/26630] New: Incorrect result when subtracting, casting to short and back to int, adding and multiplying

2006-03-10 Thread cyp561 at gmail dot com
As far as I can tell, c1 should be equal to 8, not -51072, or at least equal to c2. Sorry if I'm mistaken, but I can't see how c1 and c2 can be different. The result is the same using gcc 3.3.6, gcc 3.4.4 and gcc 4.0.2. Program (error.c): - #include int main() { int a1 = 4;

[Bug tree-optimization/26629] tree load PRE does not work on array references

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-03-10 12:50 --- Here is another testcase: typedef long dtype; typedef dtype longarray[]; int g (longarray *array1, unsigned long i, dtype j) { if (!(*array1)[i]) i++; if (j < (*array1)[i]) h(); return i; } int g1 (lon

[Bug middle-end/26630] [4.0 Regression] Incorrect result when subtracting, casting to short and back to int, adding and multiplying

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-03-10 12:57 --- Confirmed, just a regression on the 4.0 branch, 3.4.6 was the last release of the 3.4 branch. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug tree-optimization/26629] tree load PRE does not work on array references

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-03-10 12:59 --- (In reply to comment #1) > FRE handles this just fine, it is PRE which does not. Let me clarify that comment, For FRE I am talking about code like: typedef long dtype; typedef dtype longarray[]; int g (longarray *arr

[Bug tree-optimization/26524] [4.1 Regression] ICE when compiling with -ffast-math and -O3 clatm5.f (lapack)

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #11 from pinskia at gcc dot gnu dot org 2006-03-10 13:00 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug middle-end/26630] [4.0 Regression] Incorrect result when subtracting, casting to short and back to int, adding and multiplying

2006-03-10 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2006-03-10 13:52 --- We fold ((intD.0) ((short intD.7) a1D.1133 - 1) + 1) * 2 via extract_muldiv to (intD.0) (short intD.7) a1D.1133 * 2 -- rguenth at gcc dot gnu dot org changed: What|Removed

[Bug middle-end/26630] [4.0 Regression] Incorrect result when subtracting, casting to short and back to int, adding and multiplying

2006-03-10 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2006-03-10 13:53 --- shorter testcase: extern void abort(void); int main() { int a1 = 4; int c1 = ( ((int)(short)(a1-1)) + 1)*2; if (c1 != 8) abort(); return 0; } -- http://gcc.gnu.org/bugzilla/show_bug.

[Bug c++/26621] Template instantiation fails for -O1 -finline-functions

2006-03-10 Thread _talyn_ at web dot de
--- Comment #5 from _talyn_ at web dot de 2006-03-10 13:54 --- Created an attachment (id=11015) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11015&action=view) test case that shows the difference between dynamic/static alloc -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=2662

[Bug rtl-optimization/21485] [4.0/4.1/4.2 Regression] codegen regression due to PRE increasing register pressure

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #17 from pinskia at gcc dot gnu dot org 2006-03-10 13:56 --- What happens to the time if you replace that function with: void NumSift (long *array, unsigned long i, unsigned long j) { unsigned long k; while ((i + i) <= j) { k = i + i; long t, t1; t

[Bug c++/26621] Template instantiation fails for -O1 -finline-functions

2006-03-10 Thread _talyn_ at web dot de
--- Comment #6 from _talyn_ at web dot de 2006-03-10 13:56 --- (From update of attachment 11015) Certainly, I see your point with respect to the get* methods, a hint in the g++-4.X release notes about the more aggressive inlining would probably be helpful. However, this doesn't explain

[Bug c++/26621] Template instantiation fails for -O1 -finline-functions

2006-03-10 Thread pinskia at physics dot uc dot edu
--- Comment #7 from pinskia at gcc dot gnu dot org 2006-03-10 13:58 --- Subject: Re: Template instantiation fails for -O1 -finline-functions > However, this doesn't explain, why the reference to > TTypeWrapper::~TTypeWrapper > is missing if the instance of CVectorWrap is allocated sta

[Bug rtl-optimization/21485] [4.0/4.1/4.2 Regression] codegen regression due to PRE increasing register pressure

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #18 from pinskia at gcc dot gnu dot org 2006-03-10 14:10 --- (In reply to comment #17) > What happens to the time if you replace that function with: This helps about 5% but it does not get the score back up. 3.4.0's score for this machine is about 900. 4.1.0's score is 720.

[Bug rtl-optimization/21485] [4.0/4.1/4.2 Regression] codegen regression due to PRE increasing register pressure

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #19 from pinskia at gcc dot gnu dot org 2006-03-10 14:13 --- (In reply to comment #18) > (In reply to comment #17) > > What happens to the time if you replace that function with: > This helps about 5% but it does not get the score back up. Also the asm is about the same for

[Bug middle-end/26630] [4.0 Regression] Incorrect result when subtracting, casting to short and back to int, adding and multiplying

2006-03-10 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2006-03-10 14:31 --- with 4.1 we start with ((intD.0) (short intD.7) ((short unsigned intD.8) a1D.1280 - 1) + 1) * 2 which convert builds from converting a - 1 to short: (short intD.7) ((short unsigned intD.8) a1D.1280

[Bug c/26632] New: spurious warning: value computed is not used

2006-03-10 Thread mattias at virtutech dot se
Using gcc 4.1.0 on amd64, with -Wall (64 bit target): int g(void); long h(void); void f(void) { 0 ? h() : g(); } foo.c:6: warning: value computed is not used Either changing 0 to 1 or swapping g and h makes the warning go away. This was the result of a (very reasonable) macro expansion.

[Bug middle-end/26632] spurious warning: value computed is not used

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-03-10 15:16 --- Hmm, what is going on here is the following. 0 ? h() : g(); is not really just that but instead: 0 ? h() : (long)g(); which then gets foldded into: (long)g(); and we warn about the cast. -- pinski

[Bug middle-end/26632] [4.1/4.2 Regression] spurious warning: value computed is not used

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-03-10 15:17 --- I don't know if we should be warning or not. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/19430] Missing uninitialized warning

2006-03-10 Thread ciaccio at disi dot unige dot it
--- Comment #7 from ciaccio at disi dot unige dot it 2006-03-10 15:25 --- An even simpler test case of this bug (tested with gcc 3.4.5): int main( void ) { int rc; return rc; *&rc = 0; } > gcc -O -Wall program.c (more stunning silence) NOTE: in this example, t

[Bug middle-end/19430] Missing uninitialized warning

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #8 from pinskia at gcc dot gnu dot org 2006-03-10 15:28 --- (In reply to comment #7) > An even simpler test case of this bug (tested with gcc 3.4.5): That works correctly in 4.0.0 and above. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19430

[Bug middle-end/26632] [4.1/4.2 Regression] spurious warning: value computed is not used

2006-03-10 Thread mattias at virtutech dot se
--- Comment #3 from mattias at virtutech dot se 2006-03-10 15:30 --- Yes, I realise it's the implicit integral conversion that causes the warning, but since the result is not used no matter what it seems wrong to warn for it - it cannot reasonably a sign of an error in the code. It can

[Bug middle-end/19430] Missing uninitialized warning

2006-03-10 Thread dnovillo at gcc dot gnu dot org
--- Comment #9 from dnovillo at gcc dot gnu dot org 2006-03-10 15:31 --- Not going to work on this problem any time soon. -- dnovillo at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/5035] Incorrectly produces '`' might be used uninitialized in this function'

2006-03-10 Thread dnovillo at gcc dot gnu dot org
-- dnovillo at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|dnovillo at gcc dot gnu dot |unassigned at gcc dot gnu |org

[Bug tree-optimization/13962] [tree-ssa] make "fold" use alias information to optimize pointer comparisons

2006-03-10 Thread dnovillo at gcc dot gnu dot org
-- dnovillo at gcc dot gnu dot org changed: What|Removed |Added CC||dnovillo at gcc dot gnu dot |

[Bug tree-optimization/14187] [tree-ssa] restricted pointers should not alias on the tree level

2006-03-10 Thread dnovillo at gcc dot gnu dot org
-- dnovillo at gcc dot gnu dot org changed: What|Removed |Added CC||dnovillo at gcc dot gnu dot |

[Bug tree-optimization/14295] [tree-ssa] copy propagation for aggregates

2006-03-10 Thread dnovillo at gcc dot gnu dot org
-- dnovillo at gcc dot gnu dot org changed: What|Removed |Added CC||dnovillo at gcc dot gnu dot |

[Bug tree-optimization/20168] const function causes the creation of GLOBAL_VAR

2006-03-10 Thread dnovillo at gcc dot gnu dot org
--- Comment #3 from dnovillo at gcc dot gnu dot org 2006-03-10 15:36 --- Fixed in 4.2. -- dnovillo at gcc dot gnu dot org changed: What|Removed |Added Statu

[Bug middle-end/19430] Missing uninitialized warning

2006-03-10 Thread mike at codeweavers dot com
--- Comment #10 from mike at codeweavers dot com 2006-03-10 15:37 --- Can I bribe you to work on it by fixing a Wine bug in exchange? :) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19430

[Bug tree-optimization/22254] We never call may_alias_p for PARM_DECL's

2006-03-10 Thread dnovillo at gcc dot gnu dot org
--- Comment #5 from dnovillo at gcc dot gnu dot org 2006-03-10 15:45 --- The two pointers are assigned the same SMT. Is this still a problem? Dereferenced pointers D.1541, UID 1541, int *, symbol memory tag: SMT.5 D.1542, UID 1542, int *, symbol memory tag: SMT.5 Or do you need to

[Bug tree-optimization/21258] Teach VRP to pick up a constant from case label.

2006-03-10 Thread dnovillo at gcc dot gnu dot org
--- Comment #5 from dnovillo at gcc dot gnu dot org 2006-03-10 16:07 --- Not working on this anymore. -- dnovillo at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/26633] New: Minimal c++ program using threads and exceptions crashes when compiled statically

2006-03-10 Thread ahu at ds9a dot nl
The below does not crash with g++ 4.0.2, nor when removing -static: (see also http://ds9a.nl/minimal.cc.txt) #include /* compiled with g++ 4.1.0 (g++ minimal.cc -o minimal -static -pthread), on Ubuntu Breezy: Using built-in specs. Target: i686-pc-linux-gnu Configured with: ../gcc-4

[Bug middle-end/26630] [4.0 Regression] Incorrect result when subtracting, casting to short and back to int, adding and multiplying

2006-03-10 Thread rguenth at gcc dot gnu dot org
--- Comment #5 from rguenth at gcc dot gnu dot org 2006-03-10 16:17 --- The patch from 25125 fixes the problem. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added -

[Bug middle-end/26630] [4.0 Regression] Incorrect result when subtracting, casting to short and back to int, adding and multiplying

2006-03-10 Thread patchapp at dberlin dot org
--- Comment #6 from patchapp at dberlin dot org 2006-03-10 16:25 --- Subject: Bug number PR26630 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2006-03/msg00616.html -- http://gcc.gnu.org/bugzilla/sh

[Bug c++/25322] ISO compliance of defining structs in anonymous unions

2006-03-10 Thread jvalenzu at infinite-monkeys dot org
--- Comment #3 from jvalenzu at infinite-monkeys dot org 2006-03-10 16:25 --- Would someone mind specifying what section of the standard this violates? We have a codebase that makes heavy use of (3). -- jvalenzu at infinite-monkeys dot org changed: What|Removed

[Bug c/26634] New: spurious strtok_r warning with -Wwrite-strings

2006-03-10 Thread mattias at virtutech dot se
I'm not sure whether to report this to gcc or glibc - maybe it falls in-between. #include void g(char *); void f(char *a) { char *p, *q; while ((q = strtok_r(a, ":", &p))) g(q); } with -O1 -Wall -Wwrite-strings, gives: warning: 'p' may be used uninitialized in th

[Bug middle-end/26565] [4.0/4.1/4.2 Regression] Unaligned accesses with __attribute__(packed) and memcpy

2006-03-10 Thread rguenth at gcc dot gnu dot org
--- Comment #9 from rguenth at gcc dot gnu dot org 2006-03-10 16:44 --- Subject: Bug 26565 Author: rguenth Date: Fri Mar 10 16:44:01 2006 New Revision: 111934 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111934 Log: 2006-03-10 Richard Guenther <[EMAIL PROTECTED]> PR

[Bug middle-end/26565] [4.0/4.1 Regression] Unaligned accesses with __attribute__(packed) and memcpy

2006-03-10 Thread rguenth at gcc dot gnu dot org
--- Comment #10 from rguenth at gcc dot gnu dot org 2006-03-10 16:44 --- Fixed on the mainline. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added Known

[Bug other/26633] [4.1/4.2 Regression] Minimal c++ program using threads and exceptions crashes when compiled statically

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-03-10 16:54 --- Just as I had expected in http://gcc.gnu.org/ml/gcc/2006-03/msg00256.html -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug other/26633] [4.1/4.2 Regression] Minimal c++ program using threads and exceptions crashes when compiled statically

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-03-10 16:55 --- Some information about this bug in both the libstdc++ library and the libgfortran library on the mainline: http://gcc.gnu.org/ml/gcc/2006-03/msg00248.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26633

[Bug middle-end/26634] spurious strtok_r warning with -Wall

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-03-10 16:59 --- This is not a gcc bug as the warning is correct as the following is true, a can be null entering f so p is used uninitialized. If this is a bug, this is a bug in glibc for being over optimizing. -- pinskia at gc

[Bug other/26633] [4.1/4.2 Regression] Minimal c++ program using threads and exceptions crashes when compiled statically

2006-03-10 Thread ahu at ds9a dot nl
--- Comment #3 from ahu at ds9a dot nl 2006-03-10 17:54 --- Subject: Re: [4.1/4.2 Regression] Minimal c++ program using threads and exceptions crashes when compiled statically Sure this is (exactly) related? I tried to pull in some of the symbols that might be missing to no avail. Int

[Bug middle-end/26635] New: [4.1/4.2 Regression] Bogus Storage_Error warning

2006-03-10 Thread ebotcazou at gcc dot gnu dot org
The patch 2006-01-09 Kazu Hirata <[EMAIL PROTECTED]> PR tree-optimization/25125 * convert.c (convert_to_integer): Don't narrow the type of a PLUX_EXPR or MINUS_EXPR if !flag_wrapv and the unwidened type is signed. has introduced a regression for the Ada testcase

[Bug middle-end/26635] [4.1/4.2 Regression] Bogus Storage_Error warning

2006-03-10 Thread ebotcazou at gcc dot gnu dot org
--- Comment #1 from ebotcazou at gcc dot gnu dot org 2006-03-10 18:00 --- Created an attachment (id=11016) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11016&action=view) Reduced Ada testcase. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26635

[Bug java/26390] Problem dispatching method call when method does not exist in superclass

2006-03-10 Thread mark at gcc dot gnu dot org
--- Comment #3 from mark at gcc dot gnu dot org 2006-03-10 18:13 --- While importing 0.90 into libgcj I also noticed this. Setting this package to bc (like the other awt peer implementations) gives: make[3]: Entering directory `/home/mark/src/gcc-obj/i686-pc-linux-gnu/libjava' /bin/sh .

[Bug target/26636] use of r1-r3 across __sdivsi3_4 call

2006-03-10 Thread rmansfield at qnx dot com
--- Comment #1 from rmansfield at qnx dot com 2006-03-10 18:23 --- When attaching the test case, I experience a internal error with gcc bugzilla which I reported to dberlin. I am going to attach the test case in a comment. I attempted to reduce the test case, but it changed reg. allocat

[Bug target/26098] [4.0 Regression] ICE in multiplication of 16-byte longlong vector on x86_64

2006-03-10 Thread dtemirbulatov at gmail dot com
--- Comment #3 from dtemirbulatov at gmail dot com 2006-03-10 19:09 --- Created an attachment (id=11018) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11018&action=view) bug fix this a backport form the mainline 2005-05-17 Richard Henderson <[EMAIL PROTECTED]> * config

[Bug target/26636] New: use of r1-r3 across __sdivsi3_4 call

2006-03-10 Thread rmansfield at qnx dot com
[EMAIL PROTECTED] rmansfield]$ /home/rmansfield/crosstool/gcc-4.0-20060309-glibc-2.3.6/sh4-unknown-linux-gnu/bin/sh4-unknown-linux-gnu-gcc -v -o t.s -S -m4 -O2 t.c Using built-in specs. Target: sh4-unknown-linux-gnu Configured with: /home/rmansfield/crosstool-0.42/build/sh4-unknown-linux-gnu/gcc-4.

[Bug rtl-optimization/25569] [4.2 Regression] FAIL: gfortran.dg/g77/20010610.f -O3 -fomit-frame-pointer -funroll-loops

2006-03-10 Thread law at redhat dot com
--- Comment #6 from law at redhat dot com 2006-03-10 19:37 --- Subject: Re: [4.2 Regression] FAIL: gfortran.dg/g77/20010610.f -O3 -fomit-frame-pointer -funroll-loops On Wed, 2006-03-08 at 00:07 +, janis at gcc dot gnu dot org wrote: > > --- Comment #5 from janis at gc

[Bug other/26633] [4.1/4.2 Regression] Minimal c++ program using threads and exceptions crashes when compiled statically

2006-03-10 Thread ahu at ds9a dot nl
--- Comment #4 from ahu at ds9a dot nl 2006-03-10 20:44 --- Andrew Pinski tells me this is a glibc TLS bug and that it should be reported to Ubuntu, which I have done here: https://launchpad.net/distros/ubuntu/+source/glibc/+bug/34362 The reduced testcase is: #include void *doStuff(

[Bug java/26638] New: Mauve crypto test failures

2006-03-10 Thread mark at gcc dot gnu dot org
The following test in mauve fail with a merged classpath 0.90 tree: FAIL: gnu.testlet.gnu.javax.crypto.assembly.TestOfAssembly: uncaught exception at "TestOfAssembly.testSymmetry#1" number 1: java.lang.IllegalStateException FAIL: gnu.testlet.gnu.javax.crypto.assembly.TestOfCascade: uncaught except

[Bug c++/16387] [ABI] POD double alignment shifting [3.2/3.3/3.4]

2006-03-10 Thread jason at gcc dot gnu dot org
--- Comment #4 from jason at gcc dot gnu dot org 2006-03-10 22:40 --- Subject: Bug 16387 Author: jason Date: Fri Mar 10 22:40:41 2006 New Revision: 111945 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111945 Log: PR c++/16387, c++/16389 * typeck.c (cxx_alignof_e

[Bug c/26004] [4.1/4.2 Regression] gcc errors on valid code [SVO]

2006-03-10 Thread jason at gcc dot gnu dot org
--- Comment #18 from jason at gcc dot gnu dot org 2006-03-10 22:47 --- Subject: Bug 26004 Author: jason Date: Fri Mar 10 22:47:08 2006 New Revision: 111947 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111947 Log: PR c/26004 * gimplify.c (gimplify_modify_expr_rh

[Bug java/26390] Problem dispatching method call when method does not exist in superclass

2006-03-10 Thread tromey at gcc dot gnu dot org
-- tromey at gcc dot gnu dot org changed: What|Removed |Added CC||tromey at gcc dot gnu dot |

[Bug fortran/20935] failed assertion for maxloc(n, mask=.true.)

2006-03-10 Thread tkoenig at gcc dot gnu dot org
--- Comment #5 from tkoenig at gcc dot gnu dot org 2006-03-10 23:07 --- Created an attachment (id=11019) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11019&action=view) More complete patch Here's a more complete patch, which should do the Right Thing. -- tkoenig at gcc dot gn

[Bug libgcj/26441] Old libltdl may cause memory leak in Class.forName()

2006-03-10 Thread tromey at gcc dot gnu dot org
--- Comment #2 from tromey at gcc dot gnu dot org 2006-03-10 23:14 --- I'm handling this. -- tromey at gcc dot gnu dot org changed: What|Removed |Added AssignedTo

[Bug middle-end/26004] [4.1 Regression] gcc errors on valid code [SVO]

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #19 from pinskia at gcc dot gnu dot org 2006-03-10 23:20 --- Fixed on the mainline. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added C

[Bug c++/24272] strange link error with ACE

2006-03-10 Thread lawless at spamcop dot net
--- Comment #4 from lawless at spamcop dot net 2006-03-10 23:36 --- This bug is not a dupliate of bug 19664. I just applied 'gcc-push-pop-visibility.patch' to gcc 4.0.2 on 'x86_64' and the problem is still there: /usr/bin/ld: .shobj/Logging_Strategy.o: relocation R_X86_64_PC32 against

[Bug middle-end/26004] [4.1 Regression] gcc errors on valid code [SVO]

2006-03-10 Thread jason at gcc dot gnu dot org
--- Comment #20 from jason at gcc dot gnu dot org 2006-03-10 23:42 --- Subject: Bug 26004 Author: jason Date: Fri Mar 10 23:42:48 2006 New Revision: 111952 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111952 Log: PR c/26004 * gimplify.c (gimplify_modify_expr_rh

[Bug middle-end/26004] [4.1 Regression] gcc errors on valid code [SVO]

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #21 from pinskia at gcc dot gnu dot org 2006-03-11 00:09 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNE

[Bug middle-end/26632] [4.1/4.2 Regression] spurious warning: value computed is not used

2006-03-10 Thread neil at daikokuya dot co dot uk
--- Comment #4 from neil at daikokuya dot co dot uk 2006-03-11 00:15 --- Subject: Re: spurious warning: value computed is not used pinskia at gcc dot gnu dot org wrote:- > > > --- Comment #1 from pinskia at gcc dot gnu dot org 2006-03-10 15:16 > --- > Hmm, what is going o

[Bug java/26390] Problem dispatching method call when method does not exist in superclass

2006-03-10 Thread tromey at gcc dot gnu dot org
--- Comment #4 from tromey at gcc dot gnu dot org 2006-03-11 01:40 --- Mark's problem appears to be a bytecode generation bug. We are generating: 6: invokespecial #65= But this is incorrect as you cannot invoke an interface method with invokespecial. And, super.foo() should never ca

[Bug target/26639] New: [4.0/4.1/4.2 Regression]: Gcc generates unaligned access

2006-03-10 Thread hjl at lucon dot org
[EMAIL PROTECTED] gcc]$ /export/build/gnu/gcc/build-ia64-linux/gcc/xgcc -B/export/build/gnu/gcc/build-ia64-linux/gcc/ /net/gnu-13/export/gnu/src/gcc/gcc/gcc/testsuite/gcc.dg/torture/pr26565.c -fno-show-column -lm -o ./pr26565.exe && ./pr26565.exe pr26565.exe(9088): unaligned access to 0x600

[Bug target/26639] [4.0/4.1/4.2 Regression]: Gcc generates unaligned access

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-03-11 01:53 --- Wait a minute. Wasn't this just fixed with the patch for PR 26565? -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug target/26639] [4.0/4.1/4.2 Regression]: Gcc generates unaligned access

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-03-11 02:00 --- What revision of 4.2.0 are you using? -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug bootstrap/26640] New: gcc 4.1.0 fails to bootstrap build on SuSE 10 using gcc 4.0.3

2006-03-10 Thread wbeebe at gmail dot com
Note that this is a repeatable bug (three times in succession, the last time with a full delete and re-installation of the source). The following configure switches were used. ../configure --prefix=/home/gcc410 --enable-threads=posix --enable-languages=c,c++,fortran --enable-checking --with-syste

[Bug middle-end/26640] gcc 4.1.0 fails to bootstrap build on SuSE 10 using gcc 4.0.3

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-03-11 02:38 --- Can you do what the instructions say and attach the preprocessed source? -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/26640] gcc 4.1.0 fails to bootstrap build on SuSE 10 using gcc 4.0.3

2006-03-10 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-03-11 02:42 --- Also what is your static limit? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26640

[Bug target/26639] [4.0/4.1/4.2 Regression]: Gcc generates unaligned access

2006-03-10 Thread hjl at lucon dot org
-zlib --with-demangler-in-ld --enable-shared --enable-threads=posix --enable-haifa --disable-checking --prefix=/usr/gcc-4.2 --with-local-prefix=/usr/local Thread model: posix gcc version 4.2.0 20060310 (experimental) [trunk revision 111940 clean] -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id

[Bug target/25218] [4.0 Regression] ICE : in compensate_edge, at reg-stack.c:2795

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25218

[Bug target/25203] [4.0] enable checking failure in g++.dg/opt/mmx2.C

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25203

[Bug target/25281] [3.4/4.0 only] Request fix for Bug #23150 (aka Bug #24675) in gcc 3.4.x and gcc 4.0.x for arm arch.

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25281

[Bug c++/25357] [3.4/4.0 Regression] ICE in typeid

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25357

[Bug inline-asm/16194] [3.4/4.0 Regression] global register with inline-asm and clobered

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16194

[Bug preprocessor/13726] [3.4/4.0 regression]cpp -C -dI loses comments on same line as #include directives

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13726

[Bug rtl-optimization/16613] [3.4/4.0 Regression] compile time regression, when adding cerr usage

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16613

[Bug bootstrap/16865] False alarm about use of uninitialized variable breaks bootstrap at -O3

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16865

[Bug c++/14329] [tree-ssa] badly formatted warnings for SRA replacements

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14329

[Bug target/18631] [4.0 Regression] missing error messages passing vectors with -mno-altivec -mabi=altivec

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18631

[Bug bootstrap/17383] [4.0 Regression] Building in src dir fails

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17383

[Bug rtl-optimization/18853] [4.0 Regression] ICE: genautomata.c:5238, error: verify_flow_info: Incorrect fallthru

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18853

[Bug c++/20209] [3.4/4.0 Regression] Missing warnings for "aggregate has a partly bracketed initializer"

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20209

[Bug tree-optimization/18463] [4.0 Regression] suboptimal use of fancy x86 addressing modes

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18463

[Bug c++/17913] [3.4/4.0 Regression] ICE jumping into statement expression

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17913

[Bug java/19870] gcj -C doesn't generate accessors for private members across nested class boundaries

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19870

[Bug target/21081] [4.0 Regression] internal compiler error: verify_stmts failed.

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21081

[Bug target/21169] [4.0 regression] ICE in reload_cse_simplify_operands with -fnon-call-exceptions -fPIC -O2

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21169

[Bug tree-optimization/21548] [4.0 regression] Wrong warning about uninitialized variable

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21548

[Bug target/21316] [3.4/4.0 Regression] pointer lookup cache misses more frequent

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21316

[Bug c++/20293] [3.4/4.0 regression] Wrong diagnostic for ambiguous access

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20293

[Bug middle-end/21392] [4.0 Regression] Wrong code generated for array of enum with "mode" attribute

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21392

[Bug rtl-optimization/21299] [3.4/4.0/4.1/4.2 Regression] internal error on invalid asm statement

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21299

[Bug c++/21308] [3.4/4.0 Regression] Very high compile time

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21308

[Bug tree-optimization/22360] [4.0 Regression] upper_bound_in_type and lower_bound_in_type are buggy

2006-03-10 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.3 |4.0.4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22360

  1   2   3   >