Apparent erratic rescanning of ,## construct in cpp 3.2.x

2005-06-15 Thread Stephen P Spackman
This input: -- #define a(x,...) a1(x,__VA_ARGS__) #define b(x,...) b1(x,##__VA_ARGS__) a(a(1,2),a(3,4)) //1 a(a(1,2),b(3,4)) //2 b(b(1,2),a(3,4)) //3 b(b(1,2),b(3,4)) //4 --

GCC-ANSI C conflict

2005-06-15 Thread Sankara Rameswaran
hi according to ansi c standards all declarations have to to be at the starting of the block.. which means the program below should not work.. i compiled this using gcc >>gcc (GCC) 3.4.3 20041212 (Red Hat 3.4.3-9.EL4) >>Copyright (C) 2004 Free Software Foundation, Inc. >>This is free software; see

[Bug libgcj/19877] sometimes reconfiguring leads to incorrect config.h

2005-06-15 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2005-06-16 03:46 --- The versions you're using all look right. In this case I regenerated configure and whatnot due to a change in config/. I haven't been using autoreconf though; I've been running the tools by hand, looking in

[Bug libgcj/19877] sometimes reconfiguring leads to incorrect config.h

2005-06-15 Thread bkoz at gcc dot gnu dot org
--- Additional Comments From bkoz at gcc dot gnu dot org 2005-06-16 03:23 --- Tom, what am I doing wrong? I seem Mike Stump checking in these kinds of cleanup of reconfigured files as well. Currently I'm using mainline/gcc-4_0 autoconf 2.59 automake 1.9.3 gcc-3_4-branch autoconf 2.59

[Bug libgcj/19877] sometimes reconfiguring leads to incorrect config.h

2005-06-15 Thread bkoz at gcc dot gnu dot org
--- Additional Comments From bkoz at gcc dot gnu dot org 2005-06-16 03:20 --- Tom -- What|Removed |Added CC||bkoz at gcc dot gnu

[Bug tree-optimization/22056] gcc.dg/pr14796-2.c scan-tree-dump c & -34359738368 fails

2005-06-15 Thread phython at gcc dot gnu dot org
--- Additional Comments From phython at gcc dot gnu dot org 2005-06-16 02:51 --- According to the results posted to gcc-testresults, this only effects i386. Also a cross-compiler from ia64-linux to i386-elf doesn't show a problem -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22056

[Bug libstdc++/22087] New: ctype tables are offset by one on DJGPP

2005-06-15 Thread carey dot evans at gmail dot com
On DJGPP, rather than _M_table pointing to the mask for '\0', it points to the mask for EOF. It is then offset by one in ctype::is(mask, char), but not in ctype::is(const char*, const char*, mask*), ctype::table() or in the constructor mask* parameter. (ctype::classic_table() returns 0.) The con

[Bug target/21757] 64bit multilib for ppc-darwin

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

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-16 01:58 --- See on why this is a dup of bug 21757. *** This bug has been marked as a duplicate of 21757 *** -- What|Removed |Added

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2005-06-16 01:56 --- This is a blatant case of a bug which surely requires more investigation and surely a bit more respect towards the submitter, who is helpful and is providing good reports. -- What|Removed

[Bug fastjar/22012] fastjar -C gets confused with more than one argument

2005-06-15 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2005-06-16 01:38 --- This is actually how jar is supposed to work. It is silly, but afaics the JDK jar works the same way. I'm closing the PR for this reason. FWIW I had to add another argument and I get this: opsy. jar -cvf q

[Bug c/22086] void * dereferenced in sizeof() yields 1

2005-06-15 Thread jboone at logitel dot com
--- Additional Comments From jboone at logitel dot com 2005-06-16 00:03 --- Subject: Re: void * dereferenced in sizeof() yields 1 My apologies. And thanks for the polite explanation. I'll wade through the man pages and start using a more appropriate set of compile options. Thanks,

[Bug c/22086] void * dereferenced in sizeof() yields 1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 23:50 --- This is a GCC extension. sizeof(void) is invalid C and should error out and does with -pedantic-errors The reason why it is 1 and not 0 is because it is also a GNU extension that you can increment a void

[Bug preprocessor/22086] void * dereferenced in sizeof() yields 1

2005-06-15 Thread jboone at logitel dot com
--- Additional Comments From jboone at logitel dot com 2005-06-15 23:48 --- Created an attachment (id=9097) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9097&action=view) Intermediate output from gcc -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22086

[Bug preprocessor/22086] void * dereferenced in sizeof() yields 1

2005-06-15 Thread jboone at logitel dot com
--- Additional Comments From jboone at logitel dot com 2005-06-15 23:47 --- Created an attachment (id=9096) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9096&action=view) C sample -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22086

[Bug preprocessor/22086] New: void * dereferenced in sizeof() yields 1

2005-06-15 Thread jboone at logitel dot com
To my surprise, I was able to compile the following code snippet: void * pv = NULL; printf("sizeof: %d\n", sizeof(*pv)); I believe there are two problems here. First, I should not be able to dereference a void pointer, as I do inside sizeof(). Secondly, even if I could, should it

[Bug target/22077] [4.0/4.1 Regression] vec_all_eq does not produce good result

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 23:10 --- (In reply to comment #8) > The preprocessing source for the mainline is: Note don't use -fpreprocessed because there is a bug which causing that fail, see PR 22085. -- http://gcc.gnu.org/bugzilla/show_

[Bug target/22085] [4.1 Regression] error with -fpreprocessed

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 23:09 --- I get the following error: t.i: In function 'foo': t.i:3: error: unresolved overload for Altivec builtin '__builtin_vec_vcmpeq_p' -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22085

[Bug target/22085] [4.1 Regression] error with -fpreprocessed

2005-06-15 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added CC||bonzini at gcc dot gnu dot ||org Summary|[4.1 Regress

[Bug target/22085] New: [4.1 Regression] error with

2005-06-15 Thread pinskia at gcc dot gnu dot org
Try the following code with -maltivec -fpreprocessed: int foo(__attribute__((altivec(vector__))) float x, __attribute__((altivec(vector__))) float y) { if (__builtin_vec_vcmpeq_p (2, (x), (y))) return 3245; else return 12; } -- Summary: [4.1 Regression] error with

[Bug target/22077] [4.0/4.1 Regression] vec_all_eq does not produce good result

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 23:07 --- The preprocessing source for the mainline is: int foo(__attribute__((altivec(vector__))) float x, __attribute__((altivec(vector__))) float y) { if (__builtin_vec_vcmpeq_p (2, (x), (y))) return 3245;

[Bug libgcj/22084] New: Divide_1 test case hangs

2005-06-15 Thread tromey at gcc dot gnu dot org
The Divide_1 test case now apparently hangs, printing: set_ld_library_path_env_vars: ld_library_path=.:/home/tromey/gnu/Trunk/build/i686-pc-linux-gnu//libjava/.libs:/home/tromey/gnu/Trunk/build/gcc 0 -2147483648 50354022 GC Warning: Repeated allocation of very large block (appr. size 258048):

[Bug target/22077] [4.0/4.1 Regression] vec_all_eq does not produce good result

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 22:53 --- This does not look like target bug after all. The extra move does not matter as it is removed in the 3.4/ 4.0 case before getting to .combine: int foo(vector float x, vector float y) { int t = vec_all_eq(x

[Bug target/22077] [4.0/4.1 Regression] vec_all_eq does not produce good result

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 22:42 --- There is an extra RTL in .expand: (insn 15 14 16 1 (set (reg:SI 119 [ D.1317 ]) (reg:SI 123)) -1 (nil) (nil)) So this might not be a target bug after all. -- http://gcc.gnu.org/bugzilla/show

[Bug java/22011] converting jar files into .so library in win32

2005-06-15 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2005-06-15 22:42 --- I'm not sure that building a shared library with gcj on windows is supported. (But I'm not an expert on our windows port.) Can you provide more information about this failure? A stack trace might help. Or

[Bug target/22077] [4.0/4.1 Regression] vec_all_eq does not produce good result

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 22:38 --- 3.4.4 on powerpc-darwin gives: vcmpeqfp. v3,v2,v3 li r3,3245 crnot 26,24 bnelr- cr6 li r3,12 blr so this is a regression. -- What|Removed

[Bug libgcj/17536] wrong ClassLoader for int[]

2005-06-15 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-15 22:36 --- Subject: Bug 17536 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-15 22:36:01 Modified files: libjava: ChangeLog Added files: libja

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread lucier at math dot purdue dot edu
--- Additional Comments From lucier at math dot purdue dot edu 2005-06-15 22:31 --- Subject: Re: Can't link 64-bit shared libraries with Xcode 2.1 On Jun 15, 2005, at 4:57 PM, pinskia at gcc dot gnu dot org wrote: > That does not make sense as it should always include libgcc_s for >

[Bug target/22077] vec_all_eq does not produce good result

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 22:21 --- Hmm, Apple's 3.3 compiler gets it right: vcmpeqfp. v3,v2,v3 li r3,3245 bltlr- cr6 li r3,12 blr -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22077

[Bug target/22077] vec_all_eq does not produce good result

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 22:11 --- I should have written we want the following code gen: vcmpeqfp. v3,v2,v3 li r3,3245 bnelr+ cr6 li r3,12 blr -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22077

[Bug java/20697] Invalid Can't find method error on call to super

2005-06-15 Thread mckinlay at redhat dot com
--- Additional Comments From mckinlay at redhat dot com 2005-06-15 22:07 --- *** Bug 22060 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug java/22060] javax/swing/text/InternationalFormatter.clone() doesn't compile (GNU Classpath)

2005-06-15 Thread mckinlay at redhat dot com
--- Additional Comments From mckinlay at redhat dot com 2005-06-15 22:07 --- *** This bug has been marked as a duplicate of 20697 *** -- What|Removed |Added St

[Bug target/22006] New IRIX 6.5 testsuite failures with gas: .space repeat count is zero, ignored

2005-06-15 Thread ro at techfak dot uni-bielefeld dot de
--- Additional Comments From ro at techfak dot uni-bielefeld dot de 2005-06-15 22:01 --- Subject: Re: New IRIX 6.5 testsuite failures with gas: .space repeat count is zero, ignored echristo at redhat dot com writes: > Did you happen to catch where the .space 0 were being emitted from

[Bug target/22006] New IRIX 6.5 testsuite failures with gas: .space repeat count is zero, ignored

2005-06-15 Thread echristo at redhat dot com
--- Additional Comments From echristo at redhat dot com 2005-06-15 21:58 --- Did you happen to catch where the .space 0 were being emitted from? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22006

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 21:57 --- (In reply to comment #18) > Subject: Re: Can't link 64-bit shared libraries with Xcode 2.1 > > Great, thanks. > > Here is what otool64 -L reports for a binary built with That does not make sense as it sh

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread lucier at math dot purdue dot edu
--- Additional Comments From lucier at math dot purdue dot edu 2005-06-15 21:48 --- Subject: Re: Can't link 64-bit shared libraries with Xcode 2.1 Great, thanks. Here is what otool64 -L reports for a binary built with [descartes:~/programs/gcc-4.0.0/objdir] lucier% /pkgs/gcc-4.0.0-ne

[Bug java/20697] Invalid Can't find method error on call to super

2005-06-15 Thread mckinlay at redhat dot com
--- Additional Comments From mckinlay at redhat dot com 2005-06-15 21:44 --- Err, 18119 I mean. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20697

[Bug java/20697] Invalid Can't find method error on call to super

2005-06-15 Thread mckinlay at redhat dot com
--- Additional Comments From mckinlay at redhat dot com 2005-06-15 21:43 --- I'm testing a fix. This is a different problem to 18131. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20697

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 21:21 --- (In reply to comment #16) > Subject: Re: Can't link 64-bit shared libraries with Xcode 2.1 > > Already tried it and it doesn't do what I think we want: That means otool does not support 64bit, I think the

[Bug c++/3187] gcc lays down two copies of constructors

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 21:19 --- (In reply to comment #17) > This problem makes it difficult to debug C++ code. This is affecting the > systemC (www.systemc.org) community. It is more than a minor issue those > debugging C++. The debuger

[Bug middle-end/22072] bizarre code for int*int/2

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 21:18 --- (In reply to comment #6) > SAR r/m32, 1Signed divide* r/m32 by 2, once Huh, I think that is wrong, witness: #include int f(int a) { return a >> 1; } int main(void) { int g = f(-5); printf("%d\n"

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread lucier at math dot purdue dot edu
--- Additional Comments From lucier at math dot purdue dot edu 2005-06-15 21:15 --- Subject: Re: Can't link 64-bit shared libraries with Xcode 2.1 Already tried it and it doesn't do what I think we want: /usr/bin/libtool -dynamic -arch_only ppc64 -noall_load - weak_reference_mismatch

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 21:14 --- (In reply to comment #14) > And how can I check whether your explanation is true? (On linux I > have ldd for such a task; do you know if there is something similar > for darwin?) "otool -L" -- http:

[Bug middle-end/19616] missed tail call

2005-06-15 Thread steven at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |steven at gcc dot gnu dot |dot org |org Status|NEW

[Bug c++/3187] gcc lays down two copies of constructors

2005-06-15 Thread larue at cadence dot com
--- Additional Comments From larue at cadence dot com 2005-06-15 21:09 --- This problem makes it difficult to debug C++ code. This is affecting the systemC (www.systemc.org) community. It is more than a minor issue those debugging C++. -- What|Removed

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread lucier at math dot purdue dot edu
--- Additional Comments From lucier at math dot purdue dot edu 2005-06-15 21:05 --- Subject: Re: Can't link 64-bit shared libraries with Xcode 2.1 OK, so do we now agree it works with 4.0.0, but not with 4.0-branch? You claim "That is because it is picking up the libgcc_s.dylib which

[Bug middle-end/22072] bizarre code for int*int/2

2005-06-15 Thread felix-gcc at fefe dot de
--- Additional Comments From felix-gcc at fefe dot de 2005-06-15 21:05 --- (In reply to comment #5) > (In reply to comment #4) > > what about *arithmetic shift* instruction (e.g. SAR on ix86) ? > Nope, try that with a negative number and you will notice that it will not > work. Actuall

[Bug target/22083] New: TARGET_C99_FUNCTIONS is wrongly defined on AIX 5.1

2005-06-15 Thread lmakhlis at bmc dot com
gcc/config/rs6000/aix51.h and gcc/config/rs6000/aix52.h both define TARGET_C99_FUNCTIONS. This seems to be wrong for AIX 5.1: it has xxxl functions, but not xxxf ones. Source code: === CUT === extern double sqrt(double); float f(float x) { return sqrt(x); } int main() { return f(1.0f) != 1.

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

2005-06-15 Thread echristo at redhat dot com
--- Additional Comments From echristo at redhat dot com 2005-06-15 20:49 --- OK. This diff works, and passes bootstrap with no regressions for both --enable-intermodule and normally on x86-linux. The --enable-intermodule bits are why we split this out in the first place, but same_transla

[Bug libgcj/14572] System ClassLoader is not set according to java.system.class.loader property

2005-06-15 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2005-06-15 20:48 --- The bug here is that our built-in system class loader is not initialized when the user-specified system class loader is looked for. So, the class path is not searched and the class is not found. Fixing this

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 20:46 --- (In reply to comment #12) > But you refuse to try it for yourself, and keep repeating that it > can't be so. That is because it is picking up the libgcc_s.dylib which is included with Apple's 4.0.0 and n

[Bug libgcj/17536] wrong ClassLoader for int[]

2005-06-15 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2005-06-15 20:45 --- Fixed on cvs trunk. -- What|Removed |Added Status|NEW |R

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread lucier at math dot purdue dot edu
--- Additional Comments From lucier at math dot purdue dot edu 2005-06-15 20:43 --- Subject: Re: Can't link 64-bit shared libraries with Xcode 2.1 On Jun 15, 2005, at 2:51 PM, pinskia at gcc dot gnu dot org wrote: > > --- Additional Comments From pinskia at gcc dot gnu dot org

[Bug java/20715] gcj compilation error

2005-06-15 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2005-06-15 20:19 --- In 4.0, if you can use indirect dispatch, gcj will use the new verifier, which is somewhat less buggy. (Assuming this is a verifier bug, which is not clear, as there is not enough information here.) In "4.1

[Bug target/20191] [3.4 Regression] ICE in reload_cse_simplify_operands, on powerpc linux

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 20:16 --- Patch posted here: . -- What|Removed |Added -

[Bug java/22060] javax/swing/text/InternationalFormatter.clone() doesn't compile (GNU Classpath)

2005-06-15 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2005-06-15 20:13 --- This looks like a dup of bug 20697 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22060

[Bug tree-optimization/21923] [4.1 Regression] Ada compiler fails to build on gcc 4.1

2005-06-15 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-15 20:13 --- Subject: Bug 21923 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-15 20:13:13 Modified files: gcc: ChangeLog tree-ssa.c Log message:

[Bug tree-optimization/21923] [4.1 Regression] Ada compiler fails to build on gcc 4.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 20:13 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug libgcj/21074] Trivial bug in the method getHeaderFieldKey() in the file java/net/protocol/http/HTTPURLConnection.java

2005-06-15 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2005-06-15 20:10 --- I checked this in on the trunk. Once the branch status changes, I will check this in to 4.0 and close the PR. -- What|Removed |Added -

[Bug tree-optimization/21923] [4.1 Regression] Ada compiler fails to build on gcc 4.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 20:08 --- Patch posted: , Mine. -- What|Removed |Added

[Bug libgcj/21074] Trivial bug in the method getHeaderFieldKey() in the file java/net/protocol/http/HTTPURLConnection.java

2005-06-15 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-15 20:08 --- Subject: Bug 21074 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-15 20:08:28 Modified files: libjava: ChangeLog libjava/gnu/java/n

[Bug tree-optimization/22024] [4.1 Regression] ACATS ICE cxa5a07 cxa5a08 cxg2016 SEGV in get_rank tree-ssa-reassoc.c:292

2005-06-15 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-15 20:03 --- Subject: Bug 22024 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-15 20:02:39 Modified files: gcc: ChangeLog tree-ssa-reassoc.c Log me

[Bug tree-optimization/22024] [4.1 Regression] ACATS ICE cxa5a07 cxa5a08 cxg2016 SEGV in get_rank tree-ssa-reassoc.c:292

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 20:02 --- Fixed, on to the next one. -- What|Removed |Added Status|ASSIGNED

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 19:51 --- I think you built in a directory for 4.0.0 which you built a prerelease of 4.0.0 which was built before the multilib was disabled. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22082

[Bug libfortran/16991] [meta-bug] libgfortran does not build every where

2005-06-15 Thread fxcoudert at gcc dot gnu dot org
-- Bug 16991 depends on bug 21950, which changed state. Bug 21950 Summary: All gfortran execution tests fail on Tru64 UNIX V4.0F: scalbn unresolved http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21950 What|Old Value |New Value

[Bug libfortran/21950] All gfortran execution tests fail on Tru64 UNIX V4.0F: scalbn unresolved

2005-06-15 Thread fxcoudert at gcc dot gnu dot org
--- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-06-15 19:46 --- Patch commited on mainline and 4.0. Fixed. -- What|Removed |Added Status|ASSIG

[Bug java/22060] javax/swing/text/InternationalFormatter.clone() doesn't compile (GNU Classpath)

2005-06-15 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2005-06-15 19:42 --- I looked at this a little bit. There are two choices for the problem here. One is that find_applicable_accessible_methods_list is returning too much. For the call in question, it returns Object.clone, Inne

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread lucier at math dot purdue dot edu
--- Additional Comments From lucier at math dot purdue dot edu 2005-06-15 19:32 --- Subject: Re: Can't link 64-bit shared libraries with Xcode 2.1 On Jun 15, 2005, at 2:27 PM, pinskia at gcc dot gnu dot org wrote: > > --- Additional Comments From pinskia at gcc dot gnu dot org

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 19:27 --- Nope, 64bit multilib support was disabled before the release of 4.0.0: 2005-04-02 Geoffrey Keating <[EMAIL PROTECTED]> * config/rs6000/t-darwin8: Comment out ppc64 multilib. So this is again a d

[Bug target/21757] 64bit multilib for ppc-darwin

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 19:27 --- *** Bug 22082 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21757

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread lucier at math dot purdue dot edu
erpc-apple-darwin8.1.0 Configured with: ../configure --prefix=/pkgs/gcc-4.0-branch --with- gmp=/pkgs/gmp-4.1.3 --with-mpfr=/pkgs/gmp-4.1.3 Thread model: posix gcc version 4.0.1 20050615 (prerelease) /pkgs/gcc-4.0-branch/libexec/gcc/powerpc-apple-darwin8.1.0/4.0.1/cc1 - quiet -v -D__DYNAMIC__ -D_

[Bug libgcj/21906] hang when invoking abstract method

2005-06-15 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2005-06-15 19:12 --- I checked in a fix. -- What|Removed |Added Status|ASSIGNED|R

[Bug libgcj/21906] hang when invoking abstract method

2005-06-15 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-15 19:11 --- Subject: Bug 21906 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-15 19:11:43 Modified files: libjava: ChangeLog defineclass.cc link.cc

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 18:56 --- (In reply to comment #6) > [descartes:~/programs/gambc40b13] lucier% file lib/libgambc.dylib > lib/libgambc.dylib: Mach-O 64-bit executable ppc64 executable, that means it is not linkable. I would double c

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread lucier at math dot purdue dot edu
--- Additional Comments From lucier at math dot purdue dot edu 2005-06-15 18:54 --- Subject: Re: Can't link 64-bit shared libraries with Xcode 2.1 On Jun 15, 2005, at 1:49 PM, pinskia at gcc dot gnu dot org wrote: > > --- Additional Comments From pinskia at gcc dot gnu dot org

[Bug libfortran/21950] All gfortran execution tests fail on Tru64 UNIX V4.0F: scalbn unresolved

2005-06-15 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-15 18:53 --- Subject: Bug 21950 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-06-15 18:53:26 Modified files: libgfortran: Change

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 18:50 --- (In reply to comment #3) > This isn't a duplicate of 21757; 21757 is about an 8-month old, tremendously > buggy, version of Apple's gcc, this report is about the current release > candidate. Yes but the mu

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 18:49 --- ld64 failed: in ../lib/libgambc.dylib, unknown mach-o file type Means something is wrong with the ld64 or the library it is trying to link to, so I don't see how it can be a GCC bug. Could you do: "file

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread lucier at math dot purdue dot edu
--- Additional Comments From lucier at math dot purdue dot edu 2005-06-15 18:46 --- This isn't a duplicate of 21757; 21757 is about an 8-month old, tremendously buggy, version of Apple's gcc, this report is about the current release candidate. -- What|Removed

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread lucier at math dot purdue dot edu
--- Additional Comments From lucier at math dot purdue dot edu 2005-06-15 18:42 --- This worked in 4.0.0, so it's a regression. And 4.0.0 is now the *only* version of gcc that will compile Gambit-C correctly; [descartes:~/programs/gambc40b13] lucier% /pkgs/gcc-4.0.0-apple/bin/gcc -v Us

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

2005-06-15 Thread echristo at redhat dot com
--- Additional Comments From echristo at redhat dot com 2005-06-15 18:25 --- I'll take this. I've got a patch just completing testing. -- What|Removed |Added Assigne

[Bug target/20191] [3.4 Regression] ICE in reload_cse_simplify_operands, on powerpc linux

2005-06-15 Thread janis at gcc dot gnu dot org
--- Additional Comments From janis at gcc dot gnu dot org 2005-06-15 18:24 --- I'm about to submit dalej's patch for the 3.4 branch, so I'll take this (the duplicate 22081 was mine). -- What|Removed |Added -

[Bug target/21757] 64bit multilib for ppc-darwin

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 18:23 --- *** Bug 22082 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug target/22082] Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 18:23 --- neither the mainline or the 4.0 branch really supports 64bit for ppc-darwin. Marking this as a dup of bug 21757. *** This bug has been marked as a duplicate of 21757 *** -- What|Removed

[Bug tree-optimization/16045] ICE fold check: original tree changed by fold

2005-06-15 Thread belyshev at depni dot sinp dot msu dot ru
--- Additional Comments From belyshev at depni dot sinp dot msu dot ru 2005-06-15 18:23 --- here is an updated list of failing tests: gcc.c-torture/compile/20020701-1.c gcc.c-torture/execute/builtins/memmove-2.c gcc.c-torture/execute/builtins/strcat.c gcc.c-torture/execute/builtins/strn

[Bug target/20191] [3.4 Regression] ICE in reload_cse_simplify_operands, on powerpc linux

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 18:20 --- >From the dup bug: GCC 3.3.5 doesn't get the error, so it's a regression. GCC 4.0.x and mainline don't get the error; it was fixed this this patch to mainline by dalej:

[Bug target/20191] ICE in reload_cse_simplify_operands, on powerpc linux

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 18:19 --- *** Bug 22081 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug target/22081] ICE for bad powerpc hard float move

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 18:19 --- This is a dup of bug 20191. *** This bug has been marked as a duplicate of 20191 *** -- What|Removed |Added -

[Bug AWT/21978] GCC 4.0 Awt and Swing problem

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 18:16 --- (In reply to comment #4) Yes you have to recompile GCC/GCJ. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21978

[Bug target/22082] New: Can't link 64-bit shared libraries with Xcode 2.1

2005-06-15 Thread lucier at math dot purdue dot edu
ucier% /pkgs/gcc-4.0-mainline/bin/gcc -v Using built-in specs. Target: powerpc-apple-darwin8.1.0 Configured with: ../configure --prefix=/pkgs/gcc-4.0-mainline --with-gmp=/pkgs/gmp-4.1.3 --with-mpfr=/pkgs/gmp-4.1.3 Thread model: posix gcc version 4.1.0 20050615 (experimental) [descartes:~/programs] l

[Bug target/22081] ICE for bad powerpc hard float move

2005-06-15 Thread janis at gcc dot gnu dot org
--- Additional Comments From janis at gcc dot gnu dot org 2005-06-15 18:03 --- Created an attachment (id=9094) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9094&action=view) minimized test caes This C testcase was minimized from a 227,000 line preprocessed C++ file that got the s

[Bug target/22081] New: ICE for bad powerpc hard float move

2005-06-15 Thread janis at gcc dot gnu dot org
GCC 3.4 (branch and all releases) gets an internal compiler error with the test case on powerpc64-linux for both -m32 and -m64 with -O2: elm3b11% /opt/gcc-nightly/3.4/bin/gcc -c -O2 -m64 bug.c bug.c: In function `func3

[Bug AWT/21978] GCC 4.0 Awt and Swing problem

2005-06-15 Thread abilalh at yahoo dot com
--- Additional Comments From abilalh at yahoo dot com 2005-06-15 17:38 --- (In reply to comment #3) > You need to configure libgcj to produce the AWT peers using the following options: > --enable-java-awt=gtk > Please read the "AWT-Specific Options" section of

[Bug target/22076] Strange code for MMX register moves

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 17:35 --- a is uninitialized so what do you expect? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22076

[Bug target/16185] ICE: in spill_failure, at reload1.c:1892, global registers and long long

2005-06-15 Thread belyshev at depni dot sinp dot msu dot ru
--- Additional Comments From belyshev at depni dot sinp dot msu dot ru 2005-06-15 17:28 --- *** Bug 22080 has been marked as a duplicate of this bug. *** -- What|Removed |Added --

[Bug target/22080] Unable to find a register to spill in C function

2005-06-15 Thread belyshev at depni dot sinp dot msu dot ru
--- Additional Comments From belyshev at depni dot sinp dot msu dot ru 2005-06-15 17:28 --- *** This bug has been marked as a duplicate of 16185 *** -- What|Removed |Added

[Bug middle-end/21032] GCC 3.4.3 wrongly reorders floating-point operations

2005-06-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-15 17:26 --- This is unrelated to 323. The problem is that GCC does not implement a rounding modes correctly for C99 and therefor defines it as aways "normal" rounding mode and implements this transformation. --

[Bug target/22080] Unable to find a register to spill in C function

2005-06-15 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Component|c |target GCC target triplet||i386-redhat-linux Keywords|

[Bug middle-end/21032] GCC 3.4.3 wrongly reorders floating-point operations

2005-06-15 Thread vincent at vinc17 dot org
--- Additional Comments From vincent at vinc17 dot org 2005-06-15 17:08 --- Oops, forget my comment. There is a bug, but 5.1.2.3#13 / 6.3.1.5#2 / 6.3.1.8#2 is not related to it if gcc does reduce the precision (due to the "volatile", that in fact prevents bug 323 from occurring here, rig

[Bug bootstrap/22078] Cannot bootstrap 3.4.4 on OS X 10.3, 3.4.3 works

2005-06-15 Thread hramrach at centrum dot cz
--- Additional Comments From hramrach at centrum dot cz 2005-06-15 16:56 --- hmm, I forgot bootstrap. That's why it fails differently when I continue manually. The build is normally controlled by a package management system, I will try with full make command line next time. -- http

  1   2   >