[Bug rtl-optimization/23478] [3.4 regression] Miscompilation due to reloading of a var that is also used in EH pad

2005-09-01 Thread jakub at gcc dot gnu dot org
--- Additional Comments From jakub at gcc dot gnu dot org 2005-09-01 20:52 --- Should be fixed on 3.4/4.0/HEAD. -- What|Removed |Added Status|NEW

[Bug libgcj/23686] path embbeded using -rpath is ignored when handling System.loadLibrary()

2005-09-01 Thread fitzsim at redhat dot com
--- Additional Comments From fitzsim at redhat dot com 2005-09-01 20:53 --- Confirmed. Run the tests like this: LD_LIBRARY_PATH=`pwd` ./linked LD_LIBRARY_PATH=`pwd` ./linkedjava -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23686

[Bug libstdc++/22309] mt allocator doesn't pthread_key_delete it's keys

2005-09-01 Thread bkoz at gcc dot gnu dot org
--- Additional Comments From bkoz at gcc dot gnu dot org 2005-09-01 21:02 --- Jakub, any idea how to add a test case for this thing? Ugh. I cannot figure it out. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22309

[Bug libgcj/23686] path embbeded using -rpath is ignored when handling System.loadLibrary()

2005-09-01 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-01 21:06 --- I want to say this is not really a bug as -rpath should almost never be used as it cannot be overwritten along other things. There are pages about why you should not be using -rpath. -- http://gcc.gnu

[Bug target/23548] [4.1 Regression] libstdc++ tests fail: could not split insn

2005-09-01 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-01 21:14 --- Fixed by one of the following patches: 2005-08-31 Richard Henderson <[EMAIL PROTECTED]> * emit-rtl.c (set_mem_attributes_minus_bitpos): Look through component-like references for setting M

[Bug tree-optimization/20605] [4.1 Regression] gcc.dg/tree-ssa/loop-4.c scan-tree-dump-times iter 0 fails

2005-09-01 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-01 21:15 --- Fixed. -- What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug libgcj/23686] path embbeded using -rpath is ignored when handling System.loadLibrary()

2005-09-01 Thread fitzsim at redhat dot com
--- Additional Comments From fitzsim at redhat dot com 2005-09-01 21:25 --- In this case we have shared libraries under /opt with the same names as libraries under /usr/lib, and we want our program to always use the /opt libraries without users having to set LD_LIBRARY_PATH. -- http

[Bug java/23620] [4.0/4.1 Regression] Segfault compiling inner interfaces

2005-09-01 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-01 21:37 --- Then this was caused by: * class.c (make_class): Do not create binfo here. (set_super_info): Create it here. * java-tree.h (CLASS_HAS_SUPER): Cope with lack of a binfo. Nathan? --

[Bug c/23687] New: Crosscompiler looks for files it never built

2005-09-01 Thread imipak at yahoo dot com
own-linux-gnu Configured with: ../gcc/configure --target=mipsisa64sb1-unknown-linux-gnu --prefix=/usr/mips --without-headers --with-newlib --with-gnu-as --with-gnu-ld --with-local-prefix=/usr/mips/mipsisa64sb1-unknown-linux-gnu --disable-shared --enable-languages=c Thread model: posix gcc

[Bug target/23687] Crosscompiler looks for files it never built

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

[Bug target/23668] [4.1 Regression] gcc.dg/i386-sse-11.c and gcc.target/i386/pr13366.c fail

2005-09-01 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-09-01 22:41 --- No, Geoff, look closer at the failure message. The biggest problem is that you deleted the line that converted a PARALLEL to a CONST_VECTOR node. Testing a fix now. -- What|Removed

[Bug c++/23688] New: Compiler does not warn on selected unknown character escapes

2005-09-01 Thread simon_baldwin at yahoo dot com
Given the following short test program: const char *s1 = "\%\(\[\{"; // all these are invalid escape sequences const char *s2 = "\)\]\}"; // so are these the compiler warns about the unknown escape sequences in s2 (and everything else you can come up with), but ignores the particular sequen

[Bug preprocessor/23688] Compiler does not warn on selected unknown character escapes

2005-09-01 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-01 23:11 --- Hmm, interesting if I add -pedantic, I get the warnings. And this is not a regression. A preprocessor person has to comment on why this is. -- What|Removed |Added

[Bug preprocessor/23688] Compiler does not warn on selected unknown character escapes

2005-09-01 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-01 23:16 --- Hmm, the comment in the preprocessor is all of those: case '(': case '{': case '[': case '%': /* '\(', etc, can be used at the beginning of a line in a long string split onto multiple line

[Bug middle-end/23676] [4.1 Regression] ICE: "missing REG_EH_REGION note in the end of bb"

2005-09-01 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-01 23:35 --- Subject: Bug 23676 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-09-01 23:35:20 Modified files: gcc: ChangeLog reload1.c rtlanal.c Log m

[Bug middle-end/23676] [4.1 Regression] ICE: "missing REG_EH_REGION note in the end of bb"

2005-09-01 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-09-01 23:38 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug c++/23689] New: Malformed typedef silently ignored

2005-09-01 Thread simon_baldwin at yahoo dot com
Given the program typedef enum { ZERO }; // error, malformed typedef, missing identifier typedef struct dummy {}; // ditto gcc will silently step over and apparently ignore the typedef, treating the statement as a simple "enum { ZERO };" rather than a "typedef enum { ZERO } type_name;" wher

[Bug c++/17470] Visibility attribute ignored for explicit template instantiation

2005-09-01 Thread jmegq at radiance dot com
--- Additional Comments From jmegq at radiance dot com 2005-09-02 00:16 --- Regarding macros -- I just found out about the _Pragma directive from C99, so at least you can do something like this (paraphrasing some ACE code): #define EXPORT_SINGLETON_DECLARE (SINGLETON_TYPE, CLASS, LOCK)

[Bug target/23668] [4.1 Regression] gcc.dg/i386-sse-11.c and gcc.target/i386/pr13366.c fail

2005-09-01 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-02 00:28 --- Subject: Bug 23668 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-09-02 00:28:00 Modified files: gcc: ChangeLog gcc/config/i386: i

[Bug target/23668] [4.1 Regression] gcc.dg/i386-sse-11.c and gcc.target/i386/pr13366.c fail

2005-09-01 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-09-02 00:28 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug libgcj/21741] Need configure option to set java.library.path

2005-09-01 Thread fitzsim at redhat dot com
--- Additional Comments From fitzsim at redhat dot com 2005-09-02 01:02 --- This is actually a libgcj bug. I'm changing the Product. -- What|Removed |Added Compone

[Bug rtl-optimization/23393] catchall-1.m fails at -Os

2005-09-01 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-02 01:50 --- The interesting thing is that catchall-1.m fails now (along with local-variables-1.m): http://gcc.gnu.org/ml/gcc-testresults/2005-09/msg00051.html But did less than a day ago: http://gcc.gnu.org/ml/gcc-tes

[Bug rtl-optimization/23393] [4.1 Regression] catchall-1.m and local-variables-1.m fails at -Os

2005-09-01 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-02 01:54 --- Since both of these tests passed yesterday, this is a regression now. The only change between those two testuiste which was related to this failure is: +2005-09-01 Jakub Jelinek <[EMAIL PROTECTED]> + +

[Bug awt/20014] BufferedImage.getGraphics() aborts

2005-09-01 Thread fitzsim at redhat dot com
--- Additional Comments From fitzsim at redhat dot com 2005-09-02 04:21 --- This worked on GNU Classpath CVS with -Dgnu.java.awt.peer.gtk.Graphics=Graphics2D. I also committed a small fix to make it work without -Dgnu.java.awt.peer.gtk.Graphics=Graphics2D. Closing. -- Wha

[Bug awt/20014] BufferedImage.getGraphics() aborts

2005-09-01 Thread cvs-commit at developer dot classpath dot org
--- Additional Comments From cvs-commit at developer dot classpath dot org 2005-09-02 04:32 --- Subject: Bug 20014 CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Thomas Fitzsimmons <[EMAIL PROTECTED]> 05/09/02 04:15:52 Modified files:

[Bug middle-end/21460] Internal compiler error in calc_dfs_tree on valid code

2005-09-01 Thread amodra at bigpond dot net dot au
--- Additional Comments From amodra at bigpond dot net dot au 2005-09-02 05:10 --- Huh, the problem is that sjlj exception code is tacked on to the end of basic block 0, instead of the end of the prologue. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21460

[Bug awt/16793] image not redrawn on expose events

2005-09-01 Thread fitzsim at redhat dot com
--- Additional Comments From fitzsim at redhat dot com 2005-09-02 06:50 --- This is fixed now. Closing. -- What|Removed |Added Status|ASSIGNED

<    1   2