[Bug c/18229] New: function names in warnings messed up

2004-10-30 Thread ak at muc dot de
On 4.0.0 20041030: All function names printed in C warnings contain binary garbage LANG=C fixes it. -- Summary: function names in warnings messed up Product: gcc Version: 4.0.0 Status: UNCONFIRMED Severity: normal Priority: P2

[Bug c/16666] [3.4/4.0 regression] dremf type conflict

2004-10-30 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-30 08:50 --- Subject: Bug 1 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-30 08:50:31 Modified files: gcc: ChangeLog c-decl.c

[Bug tree-optimization/18168] SPEC CPU2000 173.applu tree-loop-linear ICE

2004-10-30 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2004-10-30 13:06 --- I assume this is a regression? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18168

[Bug tree-optimization/18168] SPEC CPU2000 173.applu tree-loop-linear ICE

2004-10-30 Thread dberlin at dberlin dot org
--- Additional Comments From dberlin at dberlin dot org 2004-10-30 13:15 --- Subject: Re: SPEC CPU2000 173.applu tree-loop-linear ICE It only pops up with -ftree-loop-linear, which is a new option for 4.0. So no, it's probably not a regression. On Sat, 30 Oct 2004, giovannibajo at

[Bug c/18229] function names in warnings messed up

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 13:41 --- Not a bug, you have LC_ALL or one of the other LC_* flags set to *UTF8 and your terminal does not support UTF8. -- What|Removed |Added

[Bug c/16666] [3.4 regression] dremf type conflict

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 13:46 --- Fixed on the mainline right now. -- What|Removed |Added Known to fail|3.4.1 4.0.0

[Bug libstdc++/18159] tr1/tuple is broken on darwin

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 14:22 --- Not fully fixed, _I is the one which is invalid usage also. The error I get: /Users/pinskia/src/local/gcc/objdir/powerpc-apple-darwin7.4.1/libstdc++-v3/include/tr1/tuple: 1548: error: expected `' before

[Bug ada/18217] [4.0 Regression] Ada Bootstrap failures on powerpc-darwin with undefined symbol (__Unwind_fallback_frame_state_for)

2004-10-30 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Summary|[4.0 Regression] Bootstrap |[4.0 Regression] Ada |failures on powerpc-darwin |Bootstrap failures on

[Bug fortran/16487] gfortran core dump on big array

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 14:56 --- This is fixed for sure now, we were not taking advangate of TREE_CHAIN being the chain next and this fixes that. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16487

[Bug target/18230] New: SPARC VIS instructions are not generated by GCC

2004-10-30 Thread phython at gcc dot gnu dot org
GCC can generate vector instructions now, through builtins or through the autovectorizer. So, GCC should be able to generate VIS instructions. -- Summary: SPARC VIS instructions are not generated by GCC Product: gcc Version: 4.0.0 Status: UNCONFIRMED

[Bug target/18230] SPARC VIS instructions are not generated by GCC

2004-10-30 Thread phython at gcc dot gnu dot org
--- Additional Comments From phython at gcc dot gnu dot org 2004-10-30 16:10 --- Created an attachment (id=7435) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7435action=view) patch to generate fpadd16 and fpsub16 fpadd16 can now be generated for typedef short jim_vec

[Bug target/18230] SPARC VIS instructions are not generated by GCC

2004-10-30 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Severity|normal |enhancement Keywords||missed-optimization

[Bug rtl-optimization/17581] [3.4 Regression] Long long arithmetic fails inside a switch/case statement when compiled with -O2

2004-10-30 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-30 18:03 --- Subject: Bug 17581 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-3_4-branch Changes by: [EMAIL PROTECTED] 2004-10-30 18:02:59 Modified files: gcc:

[Bug rtl-optimization/17581] [3.4 Regression] Long long arithmetic fails inside a switch/case statement when compiled with -O2

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 18:12 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-10-30 Thread hp at gcc dot gnu dot org
--- Additional Comments From hp at gcc dot gnu dot org 2004-10-30 18:23 --- I'm just going to look at it briefly... -- What|Removed |Added AssignedTo|unassigned at

[Bug middle-end/18231] New: [4.0 regression] Nested inline function not inlined

2004-10-30 Thread schwab at suse dot de
When a nested inline function calls another nested inline function the latter is never inlined (even if marked always_inline). This breaks glibc. void f (void) { auto inline __attribute__ ((always_inline)) void h (void) { } auto inline __attribute__ ((always_inline)) void g (void) { h

[Bug middle-end/18231] [4.0 regression] Nested inline function not inlined

2004-10-30 Thread schwab at suse dot de
-- What|Removed |Added Target Milestone|--- |4.0.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18231

[Bug middle-end/18231] [4.0 regression] Nested inline function not inlined

2004-10-30 Thread schwab at suse dot de
--- Additional Comments From schwab at suse dot de 2004-10-30 18:52 --- The testcase was simplified too much. int f (int i) { auto inline __attribute__ ((always_inline)) int h (int i) { return i; } auto inline __attribute__ ((always_inline)) int g (void) { return h (i); }

[Bug middle-end/18231] [4.0 regression] Nested inline function not inlined

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 19:07 --- Confirmed. This changed between 2004-07-21 and 2004-07-25. -- What|Removed |Added

[Bug c/18232] New: ../../gcc/gcc/tree-ssa-operands.c:1624: warning: 'bi$ptr2' is used uninitialized in this function

2004-10-30 Thread danglin at gcc dot gnu dot org
stage1/xgcc -Bstage1/ -B/home/dave/opt/gnu/gcc/gcc-4.0.0/hppa-linux/bin/ -c -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototype s -pedantic -Wno-long-long -Wno-variadic-macros -Wold-style-definition -Werror - fno-common -DHAVE_CONFIG_H-I. -I. -I../../gcc/gcc

[Bug tree-optimization/18232] ../../gcc/gcc/tree-ssa-operands.c:1624: warning: 'bi$ptr2' is used uninitialized in this function

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 19:14 --- Mine, I posted a patch for this already: http://gcc.gnu.org/ml/gcc-patches/2004-10/msg02688.html. -- What|Removed |Added

[Bug tree-optimization/18233] New: extraneous inc/dec pair

2004-10-30 Thread nathan at gcc dot gnu dot org
The attached code produces the following assembler foo: pushl %ebp movl%esp, %ebp movl8(%ebp), %eax testl %eax, %eax jne .L7 leave ret .p2align 2,,3 .L7: xorl%edx, %edx bsfl%eax, %eax

[Bug tree-optimization/18233] extraneous inc/dec pair

2004-10-30 Thread nathan at gcc dot gnu dot org
--- Additional Comments From nathan at gcc dot gnu dot org 2004-10-30 19:16 --- Created an attachment (id=7436) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7436action=view) test case -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18233

[Bug middle-end/18096] internal compiler error: in final_scan_insn, at final.c:2429

2004-10-30 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-30 19:20 --- Subject: Bug 18096 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-30 19:20:44 Modified files: gcc: ChangeLog

[Bug middle-end/18231] [4.0 regression] Nested inline function not inlined

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 19:21 --- The problem is that we are introducing an indirection in .generic: h.0 = h; D.1126 = h.0 (i); -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18231

[Bug rtl-optimization/18233] extraneous inc/dec pair

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 19:28 --- On PPC, we get: cmpwi cr0,r3,0 li r2,0 neg r0,r3 and r0,r3,r0 bne- cr0,L7 mr r3,r2 blr L7: cntlzw r0,r0 subfic r2,r0,31 mr

[Bug rtl-optimization/8361] [3.3/3.4/4.0 regression] C++ compile-time performance regression

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-30 19:30 --- I'm not sure how interesting it is to keep this PR open. I'll be postponing it every time we get to a release for the forseeable future. -- What|Removed |Added

[Bug libgcj/10353] [3.3/3.4/4.0 regression] Java testsuite failures Array_3, TLtest, Thread_Join, Thread_Wait_Interrupt Throw_2

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-30 19:31 --- Still no movement from Java folks; postponed until GCC 3.4.4. -- What|Removed |Added

[Bug target/10692] [3.3/3.4/4.0 regression] [m68k] miscompilation of perl with -O2 -fPIC

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-30 19:31 --- Postponed until GCC 3.4.4. -- What|Removed |Added Known to fail|3.3.3 3.4.0 4.0

[Bug libobjc/11572] [3.4 regression]: GNU libobjc no longer compiled on Darwin

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-30 19:33 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug tree-optimization/18232] ../../gcc/gcc/tree-ssa-operands.c:1624: warning: 'bi$ptr2' is used uninitialized in this function

2004-10-30 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Additional Comments From dave at hiauly1 dot hia dot nrc dot ca 2004-10-30 19:33 --- Subject: Re: ../../gcc/gcc/tree-ssa-operands.c:1 Mine, I posted a patch for this already: http://gcc.gnu.org/ml/gcc-patches/2004-10/msg02688.html. What about the garbled warning 'bi$ptr2'?

[Bug rtl-optimization/11707] [3.4 Regression] [new unroller] constants not propagated in unrolled loop iterations with a conditional

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-30 19:34 --- Postponed until GCC 3.4.4. -- What|Removed |Added Known to work|3.3 4.0

[Bug tree-optimization/18232] ../../gcc/gcc/tree-ssa-operands.c:1624: warning: 'bi$ptr2' is used uninitialized in this function

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 19:37 --- if you are talking about how the quotes are, then you have a LC_* set to UTF-8 so it looks like junk because your terminal does not support UTF-8. If you are talking about bi$ptr2 being werid, it really

[Bug libstdc++/11953] _REENTRANT defined when compiling non-threaded code.

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-30 19:37 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug tree-optimization/18232] ../../gcc/gcc/tree-ssa-operands.c:1624: warning: 'bi$ptr2' is used uninitialized in this function

2004-10-30 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Additional Comments From dave at hiauly1 dot hia dot nrc dot ca 2004-10-30 19:45 --- Subject: Re: ../../gcc/gcc/tree-ssa-operands.c:1 --- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 19:37 --- if you are talking about how the quotes are, then you

[Bug tree-optimization/18232] ../../gcc/gcc/tree-ssa-operands.c:1624: warning: 'bi$ptr2' is used uninitialized in this function

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 19:49 --- (In reply to comment #4) Subject: Re: ../../gcc/gcc/tree-ssa-operands.c:1 If you are talking about bi$ptr2 being werid, it really is bi.ptr2 which is PR 14329. So, how did . become $? When we

[Bug libstdc++/13583] [3.3/3.4/4.0 Regression] __use_cache not threadsafe

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-30 20:01 --- Postponed until GCC 3.4.4. -- What|Removed |Added Known to fail|3.4.1 4.0

[Bug target/13754] [3.4/4.0 regression] ip2k-elf ICE on multiple gotos

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-30 20:01 --- Postponed until GCC 3.4.4. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13754

[Bug rtl-optimization/13931] [3.3/3.4/4.0 Regression] combiner much slower on big basic blocks

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-30 20:02 --- Postponed until GCC 3.4.4. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13931

[Bug rtl-optimization/13931] [3.3/3.4/4.0 Regression] combiner much slower on big basic blocks

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-30 20:02 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug middle-end/18231] [4.0 regression] Nested inline function not inlined

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 20:03 --- Hmm the problem is that ADDR_EXPR of the function is not declared as invariant so we creating a temprary variable for it. This also caused us to produce much worse code for the following than 3.3 and

[Bug rtl-optimization/13987] [3.4 Regression] compile time regression while compile fold-const.i

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-30 20:03 --- Postponed to GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug middle-end/18096] internal compiler error: in final_scan_insn, at final.c:2429

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 20:17 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug middle-end/18231] [4.0 regression] Nested inline function not inlined

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 20:30 --- Patch here: http://gcc.gnu.org/ml/gcc-patches/2004-10/msg02700.html. -- What|Removed |Added

[Bug libgcj/18234] New: System property java.library.path doesn't get used by System.loadLibrary()

2004-10-30 Thread mark at gcc dot gnu dot org
When compiling the following program with gcj -Djava.library.path=/usr/lib/jni --main t t.java does print that java.library.path is set to /usr/lib/jni, but this value isn't used to actually load a library in the next statement. When defining the environment variable LD_LIBRARY_PATH a library in

[Bug tree-optimization/18219] [4.0 Regression] gcc-4.0.0 bloats code by 31%

2004-10-30 Thread rakdver at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |rakdver at gcc dot gnu dot |dot org |org Status|NEW

[Bug c++/18235] New: gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2

2004-10-30 Thread michalkr10 at poczta dot onet dot pl
i tryed to compile crypto-5.2.1.tar.bz2 i've gcc 3.4.1 there is internal compiler error g++ -pipe -Os -msse -mmmx -march=pentium3 -g -msse2 -pipe -c integer.cpp integer.cpp: In static member function `static void CryptoPP::P4Optimized:: Multiply4(CryptoPP::word*, const CryptoPP::word*, const

[Bug target/18235] gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2

2004-10-30 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Component|c++ |target http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18235

[Bug preprocessor/18236] New: Segmentation fault with -O3 -fssa

2004-10-30 Thread sam124 at operamail dot com
When compiling a program to find the inode of files, I compiled it with gcc inode.c -O3 -fssa -o inode-opt -Wall -v -gstabs+ -save-temps. I ran the generated program with proper syntax and it segfaulted during execution. This is the GDB output: Program recived signal SIGSEGV, Segmentation

[Bug middle-end/18237] New: [4.0 regression] tree check: expected ssa_name, have var_decl in verify_ssa

2004-10-30 Thread schwab at suse dot de
20041030 (experimental) (powerpc-unknown-linux-gnu) GCC error: | | tree check: expected ssa_name, have var_decl in verify_ssa, at | |tree-ssa.c:697| | Error detected at makegpr.adb:4153:23

[Bug preprocessor/18236] Segmentation fault with -O3 -fssa

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 21:15 --- -fssa was removed from 3.4.0 so closing as will not fix. -- What|Removed |Added

[Bug c++/17542] Visibility attribute ignored when it precedes class head

2004-10-30 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-30 21:17 --- Subject: Bug 17542 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-30 21:17:32 Modified files: gcc/cp : ChangeLog cp-tree.h decl.c error.c

[Bug target/18235] gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2

2004-10-30 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2004-10-30 21:18 --- Please, provide a preprocessed source code attacching it to Bugzilla, as explained in: http://gcc.gnu.org/bugs.html. -- What|Removed |Added

[Bug c++/17542] Visibility attribute ignored when it precedes class head

2004-10-30 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2004-10-30 21:19 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug target/18235] [3.3/3.4 Regression] gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2

2004-10-30 Thread belyshev at lubercy dot com
--- Additional Comments From belyshev at lubercy dot com 2004-10-30 21:41 --- use '-Os -msse2' for this small testcase: typedef int m64 __attribute__ ((mode (V2SI))); static inline int bar (m64 i) {

[Bug target/18235] [3.3/3.4 Regression] gcc 3.4.1 and there is internal compiler error when tryed compile crypto-5.2.1.tar.bz2

2004-10-30 Thread belyshev at lubercy dot com
--- Additional Comments From belyshev at lubercy dot com 2004-10-30 21:51 --- *** This bug has been marked as a duplicate of 16104 *** -- What|Removed |Added

[Bug rtl-optimization/16104] [3.4/4.0 regression] ICE in reload_cse_simplify_operands, at postreload.c:378 with SSE2 code on -O2

2004-10-30 Thread belyshev at lubercy dot com
--- Additional Comments From belyshev at lubercy dot com 2004-10-30 21:51 --- *** Bug 18235 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug rtl-optimization/16104] [3.3/3.4 regression] ICE in reload_cse_simplify_operands, at postreload.c:378 with SSE2 code on -O2

2004-10-30 Thread belyshev at lubercy dot com
--- Additional Comments From belyshev at lubercy dot com 2004-10-30 22:16 --- this is small testcase for original bug (ICE in postreload.c), it fails in 3.3 and 3.4 but not in 4.0.0, use -Os -msse2 to repeat:

[Bug middle-end/18237] [4.0 regression] tree check: expected ssa_name, have var_decl in verify_ssa

2004-10-30 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.0.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18237

[Bug middle-end/18238] New: ICE in convert_move, at expr.c:588

2004-10-30 Thread belyshev at lubercy dot com
this is a fork from bug 16104 -- int foo (int __attribute__ ((__mode__ (__V2SI__))) i) { return (long long) i; } -- --

[Bug middle-end/18238] ICE in convert_move, at expr.c:588

2004-10-30 Thread belyshev at lubercy dot com
--- Additional Comments From belyshev at lubercy dot com 2004-10-30 22:45 --- 3.3.4 error: can't convert between vector values of different size 3.4.3 internal compiler error: in convert_move, at expr.c:588 4.4.0 error: invalid cast from type ‘int __vector__’ to type ‘long long int’ --

[Bug c/18239] New: [4.0 Regression] ICE in get_parm_info with werid attribute

2004-10-30 Thread pinskia at gcc dot gnu dot org
int foo (int __attribute__ ((__mode__ (vector_size(8 i) { return (long long) i; } -- Summary: [4.0 Regression] ICE in get_parm_info with werid attribute Product: gcc Version: 4.0.0 Status: UNCONFIRMED Keywords:

[Bug middle-end/18238] ICE in convert_move, at expr.c:588

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 22:52 --- For a slightly different test: int foo (int __attribute__ ((vector_size (8))) i) { return (long long) i; } you only get an ICE if you add -mmmx. -- What|Removed

[Bug c/18239] [4.0 Regression] ICE in get_parm_info with werid attribute

2004-10-30 Thread belyshev at lubercy dot com
--- Additional Comments From belyshev at lubercy dot com 2004-10-30 22:57 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW Ever

[Bug rtl-optimization/18084] [3.4 regression]setfill coupled with inline function: incorrect results on Linux x86

2004-10-30 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-30 22:58 --- Subject: Bug 18084 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-30 22:58:49 Modified files: gcc/testsuite : ChangeLog Added files:

[Bug libgcj/18234] System property java.library.path doesn't get used by System.loadLibrary()

2004-10-30 Thread mark at gcc dot gnu dot org
--- Additional Comments From mark at gcc dot gnu dot org 2004-10-30 23:03 --- Think I found what goes wrong. We call lt_dlinit after we have set lt_dlsetsearchpath. Testing a patch. -- What|Removed |Added

[Bug middle-end/18238] ICE in convert_move, at expr.c:588

2004-10-30 Thread belyshev at lubercy dot com
--- Additional Comments From belyshev at lubercy dot com 2004-10-30 23:04 --- gcc and g++ 3.3.4: error: can't convert between vector values of different size gcc and g++ 3.4.0: internal compiler error: in convert_move, at expr.c:588 g++ 4.0.0: invalid cast from type ‘int __vector__’ to

[Bug middle-end/18238] ICE in convert_move, at expr.c:588

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 23:05 --- Note I was using -O2. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18238

[Bug rtl-optimization/18084] [3.4 regression]setfill coupled with inline function: incorrect results on Linux x86

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 23:06 --- *** This bug has been marked as a duplicate of 17581 *** -- What|Removed |Added

[Bug rtl-optimization/17581] [3.4 Regression] Long long arithmetic fails inside a switch/case statement when compiled with -O2

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-30 23:06 --- *** Bug 18084 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug libgcj/18234] System property java.library.path doesn't get used by System.loadLibrary()

2004-10-30 Thread mark at gcc dot gnu dot org
--- Additional Comments From mark at gcc dot gnu dot org 2004-10-30 23:27 --- Patch here: http://gcc.gnu.org/ml/java-patches/2004-q4/msg00393.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18234

[Bug libgcj/18234] System property java.library.path doesn't get used by System.loadLibrary()

2004-10-30 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-30 23:58 --- Subject: Bug 18234 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-30 23:58:26 Modified files: libjava: ChangeLog

[Bug c/18240] New: warning: `obptr' might be used uninitialized in this function

2004-10-30 Thread herbert at 13thfloor dot at
In the followin code fragment, obptr is wrongly reported as 'might be used uninitialized' where the same code causes now arning for x86 ... static inline int vx_nofiles_task(struct task_struct *tsk) { struct files_struct *files = tsk-files; unsigned long *obptr; int

[Bug libgcj/18234] System property java.library.path doesn't get used by System.loadLibrary()

2004-10-30 Thread mark at gcc dot gnu dot org
--- Additional Comments From mark at gcc dot gnu dot org 2004-10-31 00:07 --- Fix checked in. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug c/18240] warning: `obptr' might be used uninitialized in this function

2004-10-30 Thread herbert at 13thfloor dot at
--- Additional Comments From herbert at 13thfloor dot at 2004-10-31 00:08 --- Created an attachment (id=7437) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7437action=view) the soruce file -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18240

[Bug c/18240] warning: `obptr' might be used uninitialized in this function

2004-10-30 Thread herbert at 13thfloor dot at
--- Additional Comments From herbert at 13thfloor dot at 2004-10-31 00:10 --- Created an attachment (id=7438) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7438action=view) requested .i file -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18240

[Bug c/18240] warning: `obptr' might be used uninitialized in this function

2004-10-30 Thread herbert at 13thfloor dot at
--- Additional Comments From herbert at 13thfloor dot at 2004-10-31 00:11 --- Created an attachment (id=7439) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7439action=view) compile command line -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18240

[Bug c/18240] warning: `obptr' might be used uninitialized in this function

2004-10-30 Thread herbert at 13thfloor dot at
-- What|Removed |Added Attachment #7437|the soruce file |the source file description||

[Bug c/18240] warning: `obptr' might be used uninitialized in this function

2004-10-30 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-31 00:12 --- Fixed on the mainline for 4.0.0 for sure as the warning has moved to the tree level instead of the RTL level which causes some of these target specific bugs. -- What|Removed

[Bug tree-optimization/18241] New: linux kernel loop gets miscompiled

2004-10-30 Thread ak at muc dot de
(just guessing on the component) I've been trying to boot a 4.0-20041030 compiled x86_64-linux-kernel. First it exposed a missing -fno-strict-aliasing (now fixed) but then it crashes during disk accesses. The problem goes away when one function from the radix tree library is compiled with -O0

[Bug c++/16276] [3.4 only] G++ generates local references to linkonce sections

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 01:03 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug tree-optimization/18241] linux kernel loop gets miscompiled

2004-10-30 Thread ak at muc dot de
--- Additional Comments From ak at muc dot de 2004-10-31 01:07 --- Created an attachment (id=7440) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7440action=view) miscompiled function Compiled with -O2 -fno-reorder-blocks -mno-redzone -mcmodel=kernel It crashes eventually in this

[Bug fortran/17590] Standard conformance should take intrinsics into account.

2004-10-30 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-31 01:24 --- Subject: Bug 17590 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-31 01:24:30 Modified files: gcc/fortran: ChangeLog gfortran.h intrinsic.c

[Bug rtl-optimization/18084] [3.4 regression]setfill coupled with inline function: incorrect results on Linux x86

2004-10-30 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-31 01:57 --- Subject: Bug 18084 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-3_4-branch Changes by: [EMAIL PROTECTED] 2004-10-31 01:57:39 Modified files: gcc/testsuite :

[Bug c++/15172] [3.3/3.4 regression] Copy constructor optimization in aggregate initialization

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 01:58 --- The problem here is that expand_expr_real creates a temporary variable and stores the CONSTRCUTOR corresponding to the brace-enclosed initializer there. Then, it copies the temporary to the global

[Bug target/15790] [3.4 only] Alignment error building gcc with i686-coff target

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 01:59 --- Already fixed on mainline, will not be fixed in GCC 3.4.x. -- What|Removed |Added

[Bug c++/16030] [3.4 Regression] [cygwin/mingw]: stdcall function decoration vs LTHUNK alias in multiple inheritanc

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 02:01 --- Postponed until GCC 3.4.4. Although it's somewhat sad the patch has not yet been applied, given that I approved it in August. It's still OK to apply the patch, before 3.4.3, if somebody wants to do

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

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 02:02 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug target/17990] [3.4/4.0 Regression] unaligned xmm movaps on the stack with -O2 -msse because of the frame pointer

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 02:03 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug rtl-optimization/12863] [3.4/4.0 regression] basic block reordering fails for fallthru of casesi

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 02:04 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug c++/16030] [3.4 Regression] [cygwin/mingw]: stdcall function decoration vs LTHUNK alias in multiple inheritanc

2004-10-30 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2004-10-31 02:05 --- Danny, can you please quickly retest the patch and apply it immediatly to the branch? We might be still in time for 3.4.3. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16030

[Bug target/14798] [3.4/4.0 Regression] In case of SH target with -O2 option #pragma interrupt doesn't get resetted.

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 02:05 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug target/15155] [3.4 regression][sh-linux] displacement overflows 12-bit field

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 02:05 --- Postponed until GCC 3.4.4. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15155

[Bug rtl-optimization/15289] [3.4/4.0 Regression] reload error with non-lowpart subregs

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 02:07 --- Jan, this is OK for mainline and *3.4.4*, if tests still pass. -- What|Removed |Added

[Bug middle-end/15486] [3.3/3.4/4.0 regression] -fdata-sections moves common vars to .bss

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 02:07 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug target/15155] [3.4 regression][sh-linux] displacement overflows 12-bit field

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 02:08 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug c++/16030] [3.4 Regression] [cygwin/mingw]: stdcall function decoration vs LTHUNK alias in multiple inheritanc

2004-10-30 Thread dannysmith at users dot sourceforge dot net
--- Additional Comments From dannysmith at users dot sourceforge dot net 2004-10-31 02:37 --- No, I won't backport this patch. Although the patch did apply cleanly and fixed this bug, using change_decl_assembler name caused warnings with mingw (in my code base, not in testsuite)

[Bug c++/14950] [3.4 Regression] [non unit-at-a-time] always_inline does not mix with templates and -O0

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 02:43 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug c++/17248] [3.4 Regression] __always_inline__ throws unimplemented in -O0 mode

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 02:43 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug c/16666] [3.4 regression] dremf type conflict

2004-10-30 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-31 02:43 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

  1   2   >