[Bug rtl-optimization/18081] [3.4 only] Infinite memory allocation on -O3

2005-01-11 Thread corsepiu at gcc dot gnu dot org
-- What|Removed |Added Known to work|4.0.0 |4.0.0 3.2.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18081

[Bug rtl-optimization/18081] [3.4 only] Infinite memory allocation on -O3

2005-01-11 Thread corsepiu at gcc dot gnu dot org
-- What|Removed |Added CC||corsepiu at gcc dot gnu dot ||org http://gcc.gnu.org/bugzilla/s

[Bug target/18562] SSE constant vector initialization produces dead constant values on stack

2005-01-11 Thread uros at kss-loka dot si
--- Additional Comments From uros at kss-loka dot si 2005-01-12 06:53 --- (In reply to comment #3) In the second testcase, compiler should figure out that the whole val1[] array is initialized with constants. In this case, .LCx constant vector can be built in compile time and a load of

[Bug tree-optimization/18589] could optimize FP multiplies better

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 06:50 --- This is actually not a target issue, it can be shown on ppc also and other targets including x86. doing (f1*f2)^2^2 will be the best every where as it is only three instructions and it would take the same

[Bug target/16362] i386/x86-64 backend missing logical vector operations

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 06:41 --- Fixed 3 days ago by: * config/i386/emmintrin.h (_mm_cvtsi128_si32): Move earlier. (_mm_cvtsi128_si64x): Likewise. (_mm_srl_epi64, _mm_srl_epi32, _mm_srl_epi16, _mm_sra_epi32, _mm_sra_

[Bug middle-end/19391] [4.0 Regression] missed optimization with size of 8 vectors

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 06:34 --- Note this worked with 20041124. -- What|Removed |Added Target Milestone|---

[Bug middle-end/19391] New: [4.0 Regression] missed optimization with size of 8 vectors

2005-01-11 Thread pinskia at gcc dot gnu dot org
We do not generate the vector instructions with the following code on x86_64 (and x86 -msse3): typedef short mmxw __attribute__ ((vector_size(8))); typedef int mmxdw __attribute__ ((vector_size(8))); mmxdw dw; mmxw w; void test(){ w+=w; dw= (mmxdw)w; } The code comes from PR 14552 bu

[Bug target/14552] compiled trivial vector intrinsic code is ineffiencent

2005-01-11 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added BugsThisDependsOn||19391 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14552

[Bug target/14552] compiled trivial vector intrinsic code is ineffiencent

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 06:26 --- I will have to file a new bug for this as we produce so much worse code now on the mainline but that is because we expand the + to do it all four times instead of using the sse/mmx unit which is just plai

[Bug tree-optimization/19341] [4.0 Regression] DCE eliminating non-dead code

2005-01-11 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed||1 Last reconfirmed|2005-01-12 05:41:12 |2005-01-

[Bug target/19274] temporary not eliminated in composite _mm_set_ps1

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 06:07 --- This has been fixed now, I think by a patch which also fixed PR 13366. We get the same code for both functions in 32bit mode. But note in 64bit mode, we get better code for not_eliminated: not_eliminated: .L

[Bug driver/19353] Faulty handling of startfile_prefix_spec

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 05:49 --- (In reply to comment #3) > BTW, at first glance, the patch you posted cannot possibly be correct. An "if" > statement was removed but the following "else if" statement was left in place. > Then again, I coul

[Bug driver/19353] Faulty handling of startfile_prefix_spec

2005-01-11 Thread gschafer at zip dot com dot au
--- Additional Comments From gschafer at zip dot com dot au 2005-01-12 05:46 --- (In reply to comment #1) > Hmm, this SPEC should be removed from the mainline, it is unused in GCC at > all. Ok, good. I suppose removing faulty code is better then leaving it there for folks to (ab)use.

[Bug target/19315] variable is not emitted in the asm

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 05:43 --- -pedantic rejects the code. This looks like another undocumened extension and how it works too. Reading the comment in c-decl.c says this is how it should work but this is just plainly stupid: /*

[Bug tree-optimization/19341] [4.0 Regression] DCE eliminating non-dead code

2005-01-11 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-01-12 05:41 --- . -- What|Removed |Added Status|RESOLVED|UNCONFIRMED Re

[Bug tree-optimization/19341] [4.0 Regression] DCE eliminating non-dead code

2005-01-11 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-01-12 05:41 --- Not invalid. The asm is a pointer escape point. -- What|Removed |Added Last reconfirmed|-

[Bug c/19390] Accepts invalid code (well I don't know if it is invalid or not but I think it should be)

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 05:36 --- Note Comeau rejects the incomplete union also in C89 mode but not in its relax mode for either C89 or C99 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19390

[Bug c/19390] Accepts invalid code (well I don't know if it is invalid or not but I think it should be)

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 05:30 --- Just one more data point, ICC 8.0 in strict ANSI C99 mode will reject mode will reject it also. But will accept it in the default semi gcc like mode. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=193

[Bug c/19390] New: Accepts invalid code (well I don't know if it is invalid or not but I think it should be)

2005-01-11 Thread pinskia at gcc dot gnu dot org
I don't see why we just reject the following code: extern short int aa[][]; In Comeau's compiler, in both C89 and C99 mode, they reject it. Though we have to be care full not to reject: union incomplete (*foo)[4]; which is only undefined in C89 but it is invalid in C99 -- Summary: A

[Bug tree-optimization/19333] [4.0 Regression] Compilation SEGFAULTs with -O1 -finline-functions on the x86_64 architecture.

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 05:12 --- Hmm, I think this is a bad gcc extension: extern short int aa[][]; Note with -pedantic we warning about it. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19333

[Bug target/19389] [4.0 Regression] Odd gpr mem load unrecognizable insn

2005-01-11 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=19389

[Bug target/19389] [4.0 Regression] Odd gpr mem load unrecognizable insn

2005-01-11 Thread amodra at bigpond dot net dot au
--- Additional Comments From amodra at bigpond dot net dot au 2005-01-12 05:03 --- http://gcc.gnu.org/ml/gcc-patches/2005-01/msg00632.html -- What|Removed |Added K

[Bug fortran/5900] [g77 & gfortran] Lapack regressions since g77 2.95.2

2005-01-11 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2005-01-12 04:22 --- (In reply to comment #14) > I have managed to reduce one of the test sets, for CLS Drivers to a case of 3 > failures out of 108 tests. Looking at the test report I am able to > narrow down to three test dri

[Bug target/19389] [4.0 Regression] Odd gpr mem load unrecognizable insn

2005-01-11 Thread amodra at bigpond dot net dot au
--- Additional Comments From amodra at bigpond dot net dot au 2005-01-12 04:08 --- Testing a fix -- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |amodr

[Bug target/19389] [4.0 Regression] Odd gpr mem load unrecognizable insn

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 03:44 --- Confirmed. -- What|Removed |Added CC||pinskia at

[Bug target/19389] [4.0 Regression] Odd gpr mem load unrecognizable insn

2005-01-11 Thread amodra at bigpond dot net dot au
-- What|Removed |Added Known to work||3.4.3 Summary|Odd gpr mem load|[4.0 Regression] Odd gpr mem |unrecogn

[Bug target/19389] Odd gpr mem load unrecognizable insn

2005-01-11 Thread amodra at bigpond dot net dot au
--- Additional Comments From amodra at bigpond dot net dot au 2005-01-12 03:03 --- Created an attachment (id=7933) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7933&action=view) powerpc64 testcase -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19389

[Bug target/19389] New: Odd gpr mem load unrecognizable insn

2005-01-11 Thread amodra at bigpond dot net dot au
The attached testcase gives /src/tmp/20021008-1.c: In function 'foo': /src/tmp/20021008-1.c:62: error: unrecognizable insn: (insn 47 17 48 0 (set (reg:DI 9 9 [ D.1156 ]) (mem:DI (plus:DI (reg:DI 3 3 [ buf ]) (const_int 1 [0x1])) [0 S8 A128])) -1 (nil) (nil)) /src/tmp/200

[Bug ada/19388] [4.0 Regression] MAX_OFILE_ALIGNMENT on PA HP-UX

2005-01-11 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Additional Comments From dave at hiauly1 dot hia dot nrc dot ca 2005-01-12 02:53 --- Subject: Re: [4.0 Regression] MAX_OFILE_ALIGNMENT on PA HP-UX > --- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 > 02:32 --- > Hmm, I think pa abose of the macro real

[Bug target/19009] Loading of FP constants into FP reg via SSE reg

2005-01-11 Thread rth at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |rth at gcc dot gnu dot org |dot org | Status|NEW

[Bug target/19252] sub optimal use of fpu comparisons in SSE code

2005-01-11 Thread rth at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |rth at gcc dot gnu dot org |dot org | Status|UNCONFIRMED

[Bug target/19250] minss/maxss SSE insn not generated for -mfpmath=sse

2005-01-11 Thread rth at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |rth at gcc dot gnu dot org |dot org | Status|NEW

[Bug ada/19388] [4.0 Regression] MAX_OFILE_ALIGNMENT on PA HP-UX

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 02:32 --- Hmm, I think pa abose of the macro really is the cause, maybe we should change the macro to dependent on the decl and then force the explicat use in the pa back-end so we don't run into this again? What

[Bug rtl-optimization/9085] Unable to find register to spill when optimizing

2005-01-11 Thread belyshev at depni dot sinp dot msu dot ru
--- Additional Comments From belyshev at depni dot sinp dot msu dot ru 2005-01-12 02:31 --- // C testcase, use '-O1 -mregparm=1 -fschedule-insns -march=i386': struct A { int j; }; void foo (struct A *p, int j) { p->j = j % 3; } Introduced by this change: Tue Oct 27 23:32:34 1998

[Bug ada/19388] New: [4.0 Regression] MAX_OFILE_ALIGNMENT on PA HP-UX

2005-01-11 Thread danglin at gcc dot gnu dot org
gcc -D_XOPEN_UNIX -D_XOPEN_SOURCE_EXTENDED -D_INCLUDE__STDC_A1_SOURCE -D_INCLUDE _XOPEN_SOURCE_500 -c -g -DENABLE_CHECKING -DENABLE_ASSERT_CHECKING -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -mdisable-inde xing-fno-common -DHAVE_CONFIG_H-I. -Iada -I../../

[Bug fortran/19294] intrinsic_transpose.f90 runtime crash

2005-01-11 Thread phython at gcc dot gnu dot org
--- Additional Comments From phython at gcc dot gnu dot org 2005-01-12 02:15 --- Here is some more filler. The main difference between the optimized dumps at -O1 is original: atmp.40.dtype = 546; atmp.40.dim[0].stride = 1; atmp.40.dim[0].lbound = 0; atmp.40.dim[0].ubound = 1;

[Bug fortran/19269] transpose(reshape(...)) of character array segfaults.

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 02:03 --- This looks closely related to PR 19271. PR 19276 is the meta bug for char array problems. -- What|Removed |Added ---

[Bug fortran/19294] intrinsic_transpose.f90 runtime crash

2005-01-11 Thread phython at gcc dot gnu dot org
--- Additional Comments From phython at gcc dot gnu dot org 2005-01-12 01:58 --- This patch fixes the testcase on sparc-linux --- intrinsic_transpose.f90.old 2005-01-11 20:48:30.498247968 -0500 +++ intrinsic_transpose.f90 2005-01-11 20:45:38.026467664 -0500 @@ -2,7 +2,7 @@ program

[Bug rtl-optimization/16669] ICE with union { long double l; }

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 01:46 --- Fixed on the mainline. I think by the sub register work which RTH did. -- What|Removed |Added ---

[Bug fortran/19387] Fortran compiler tries to print HOST_WIDE_INT with %d format

2005-01-11 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added GCC target triplet||ia64-hp-hpux* http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19387

[Bug tree-optimization/18755] invariant/constant not recomputed when ADDR_EXPR changed

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-12 01:14 --- The patch is here: by the way to find the places. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18755

[Bug fortran/19362] ICE in fold_convert, at fold-const.c:1998

2005-01-11 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 target/19379] [4.0 Regression] ICE during build of newlib's e_atan2.c when soft-float

2005-01-11 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-01-12 00:28 --- Well, you have a problem. What do you want the ABI for soft-float to be? As RTEMS is probably the only user of -msoft-float, you get to choose. Do you want -msoft-float to imply -mno-fp-ret-in-387, do you want

[Bug target/19307] [4.0 Regression] ICE with -msse2 -mno-80387

2005-01-11 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-01-12 00:19 --- And it works with today's compiler too. As for the use of the 80387 move instructions, even with -mno-80387, this isn't a regression. At least 3.2 did this as well. One could argue that -msoft-float should im

[Bug target/19379] [4.0 Regression] ICE during build of newlib's e_atan2.c when soft-float

2005-01-11 Thread rth at gcc dot gnu dot org
-- Bug 19379 depends on bug 19307, which changed state. Bug 19307 Summary: [4.0 Regression] ICE with -msse2 -mno-80387 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19307 What|Old Value |New Value --

[Bug tree-optimization/17949] [4.0 Regression] Tree loop optimization generates unaligned access (STRICT_ALIGNMENT is set)

2005-01-11 Thread rakdver at gcc dot gnu dot org
--- Additional Comments From rakdver at gcc dot gnu dot org 2005-01-12 00:07 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug tree-optimization/17949] [4.0 Regression] Tree loop optimization generates unaligned access (STRICT_ALIGNMENT is set)

2005-01-11 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-12 00:06 --- Subject: Bug 17949 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-12 00:05:56 Modified files: gcc: ChangeLog tree-ssa-loop-ivopts.c Lo

[Bug bootstrap/19364] [4.0 Regression] embedded sparc does not bootstrap

2005-01-11 Thread joel at gcc dot gnu dot org
--- Additional Comments From joel at gcc dot gnu dot org 2005-01-12 00:03 --- (In reply to comment #7) > sparc/sol2.h seems to be used just for sparc*-*-solaris* (correct) > and sparc*-*-{elf,rtems}* (incorrectly). sparc*-*-linux* and > sparc*-*-{free,net,open}bsd* don't use sol2.h at a

[Bug target/18562] SSE constant vector initialization produces dead constant values on stack

2005-01-11 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-01-11 23:58 --- Your first test case is fixed by the patch for PR13366. We now get .align 16 .LC0: .long 1067869798 .long 1067869798 .long 1067869798 .long 1067869798 ...

[Bug fortran/19387] New: Fortran compiler tries to print HOST_WIDE_INT with %d format

2005-01-11 Thread sje at cup dot hp dot com
In trans-common.c there are two calls to gfc_warning that pass a HOST_WIDE_INT variable and a %d format. The calls in question are in translate_common, where we call gfc_warning with the variable 'offset' and again with the variable 'common_segment->offset'. This will not work when HOST_WIDE_INT

[Bug target/19379] [4.0 Regression] ICE during build of newlib's e_atan2.c when soft-float

2005-01-11 Thread joel at gcc dot gnu dot org
--- Additional Comments From joel at gcc dot gnu dot org 2005-01-11 23:19 --- Created an attachment (id=7932) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7932&action=view) test case This is the preprocessed output of newlib's e_atan2.c. I cut out the cpp directives and bzip'ed

[Bug ada/19386] New: ACATS c330001 fails at runtime on sparc-solaris,x86_64-linux

2005-01-11 Thread laurent at guerby dot net
But it passes on x86-linux, ppc-linux/darwin, s390-linux. ,.,. C330001 ACATS 2.5 05-01-10 04:59:01 C330001 Check that a variable object of an indefinite type is properly initialized/constrained by an initial value assignment that is a) an aggregate, b) a funct

[Bug libstdc++/19265] problem with _S_destroy_thread_key when using dynamic libraries

2005-01-11 Thread bkoz at gcc dot gnu dot org
--- Additional Comments From bkoz at gcc dot gnu dot org 2005-01-11 23:02 --- here. I'll make it really easy for you to check. I'm pretty sure this is fixed in the current code, but your analysis would be appreciated before we close this report. To move this newer version to the 3.4.x

[Bug libstdc++/19265] problem with _S_destroy_thread_key when using dynamic libraries

2005-01-11 Thread bkoz at gcc dot gnu dot org
--- Additional Comments From bkoz at gcc dot gnu dot org 2005-01-11 23:01 --- Created an attachment (id=7931) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7931&action=view) current mt_allocator source file -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19265

[Bug libstdc++/19265] problem with _S_destroy_thread_key when using dynamic libraries

2005-01-11 Thread bkoz at gcc dot gnu dot org
--- Additional Comments From bkoz at gcc dot gnu dot org 2005-01-11 23:00 --- Created an attachment (id=7930) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7930&action=view) current mt_allocator include -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19265

[Bug c++/19373] Including STL headers in a namespace doesn't compile

2005-01-11 Thread bkoz at gcc dot gnu dot org
--- Additional Comments From bkoz at gcc dot gnu dot org 2005-01-11 22:49 --- Gaby, your comment is funny! Made me laugh, since I just got out of my cast. Just for reference, this is invalid because it would invalidate 17.4.1.1 - Library contents requires std or std:: namespaces for

[Bug target/19370] .size directive not emitted for mips-linux

2005-01-11 Thread echristo at redhat dot com
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |echristo at redhat dot com |dot org | Status|UNCONFIRMED

[Bug target/19252] sub optimal use of fpu comparisons in SSE code

2005-01-11 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Keywords||missed-optimization, ssemmx http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19252

[Bug target/19356] [4.0 regression] ICE with SSE intrinsics

2005-01-11 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-01-11 22:12 --- Fixed with the patch for PR13366. Of course, __builtin_ia32_setzero128 doesn't exist anymore, but presumably this was after reducing the real testcase that used . -- What|Removed

[Bug rtl-optimization/13366] ICE using MMX/SSE builtins with -O

2005-01-11 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-01-11 21:53 --- Fixed. No chance of a backport to 3.4. As a workaround, use _mm_set_pi16 instead of the explicit constructor. -- What|Removed |Added ---

[Bug ada/19381] ACATS c954a03 raises storage error at runtime on s390-linux

2005-01-11 Thread laurent at guerby dot net
--- Additional Comments From laurent at guerby dot net 2005-01-11 21:51 --- Also fails on ppc-linux with ZCX. -- What|Removed |Added GCC host triplet|s390-linux

[Bug ada/19380] ACATS c3a0004 SEGV at runtime on s390-linux, probably access to subprogram problem

2005-01-11 Thread laurent at guerby dot net
--- Additional Comments From laurent at guerby dot net 2005-01-11 21:50 --- This also fail on ppc-linux with ZCX. -- What|Removed |Added GCC host triplet|s390-linux

[Bug ada/19385] New: ACATS c974012 fails at runtime on ppc-linux/darwin

2005-01-11 Thread laurent at guerby dot net
On ppc-darwin and linux without ZCX: ,.,. C974012 ACATS 2.5 05-01-10 11:03:41 C974012 Asynchronous Select: Trigger is queued on a protected entry and completes before the abortable part. * C974012 Unexpected test path taken. C974012 FAILED .

[Bug ada/19384] New: ACATS c940005 fail (no ZCX) or timeout (ZCX) at runtime on ppc-darwin/linux

2005-01-11 Thread laurent at guerby dot net
On ppc-darwin (no ZCX) or ppc-linux (no ZCX) ,.,. C940005 ACATS 2.5 04-12-09 05:34:07 C940005 Check internal calls of protected functions and procedures. * C940005 Unexpected exception in Vehicle Task. * C940005 Unexpected paths taken. C940005 FAILED .

[Bug c/17662] testsuite for IMA testcases

2005-01-11 Thread janis187 at us dot ibm dot com
--- Additional Comments From janis187 at us dot ibm dot com 2005-01-11 21:45 --- Here's how two tests mentioned here can use dg-additional-sources. I ran these in gcc.dg.special, which only treats files matching *[0-9].c as tests. I don't yet know why, but 'dg-do compile' turns into 'dg

[Bug ada/19383] New: ACATS c954020 (1,2,3,4,6) do not terminate on ppc-linux, s390-linux

2005-01-11 Thread laurent at guerby dot net
,.,. C954020 ACATS 2.5 05-01-11 17:03:35 C954020 Requeue, with abort, from protected entry to task entry. * C954020 Unexpected exception in Message_Task. * C954020 Unexpected exception in Message_Task. ,.,. C954021 ACATS 2.5 05-01-11 17:08:40 C954021 Requeue from one entry body to

[Bug rtl-optimization/13366] ICE using MMX/SSE builtins with -O

2005-01-11 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-11 21:33 --- Subject: Bug 13366 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-11 21:33:15 Modified files: gcc: ChangeLog gcc/config/i386: e

[Bug driver/19281] file format not recognized; treating as linker script

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-11 21:14 --- Well open a new bug for that and/or figure out what the options do, all of the gcc options are documented and if they are not, then that is a bug. -- What|Removed |Adde

[Bug ada/19382] New: ACATS cxb5002 simple To_Fortran test fails at runtime on s390-linux

2005-01-11 Thread laurent at guerby dot net
,.,. CXB5002 ACATS 2.5 05-01-11 13:45:01 CXB5002 Check that functions To_Fortran and To_Ada produce correct results. * CXB5002 Incorrect result from procedure To_Fortran - 1. * CXB5002 Incorrect value returned from function To_Ada - 1. CXB5002 FAILED ***

[Bug ada/19381] New: ACATS c954a03 raises storage error at runtime on s390-linux

2005-01-11 Thread laurent at guerby dot net
,.,. C954A03 ACATS 2.5 05-01-11 13:00:05 C954A03 Requeue from an Accept with parameters to a Protected Entry without parameters. raised STORAGE_ERROR -- Summary: ACATS c954a03 raises storage error at runtime on s390- linux Product:

[Bug ada/19380] New: ACATS c3a0004 SEGV at runtime on s390-linux, probably access to subprogram problem

2005-01-11 Thread laurent at guerby dot net
,.,. C3A0004 ACATS 2.5 05-01-11 12:12:07 C3A0004 Check that access to subprogram may be stored within data structures, and that the access to subprogram can subsequently be called. /home/waldi/debian/tmp/gcc-snapshot/gcc-snapshot-20050108/src/gcc/testsuite/ada/a

[Bug target/18987] [3.3/3.4 regression] [ia64] Extra '.restore sp' in tail call

2005-01-11 Thread wilson at tuliptree dot org
--- Additional Comments From wilson at tuliptree dot org 2005-01-11 21:05 --- Subject: Re: [3.3/3.4 regression] [ia64] Extra '.restore sp' in tail call On Mon, 2005-01-10 at 23:07, steven at gcc dot gnu dot org wrote: > --- Additional Comments From steven at gcc dot gnu dot

[Bug driver/19281] file format not recognized; treating as linker script

2005-01-11 Thread jeff at connectrf dot com
--- Additional Comments From jeff at connectrf dot com 2005-01-11 21:03 --- Well that makes sense.. Does anyone have an example of the compiler options to port from VC++ to GCC? A nice Crossreference table would be just dandy. -- What|Removed |Added

[Bug libgcj/16229] [meta-bug] http, URL, and URLConnection issues

2005-01-11 Thread pinskia at gcc dot gnu dot org
-- Bug 16229 depends on bug 13972, which changed state. Bug 13972 Summary: gcj's URL() does not handle ContextURL + "/redir?http://domain2.com/index.html"; correctly. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13972 What|Old Value |New Value -

[Bug libgcj/13972] gcj's URL() does not handle ContextURL + "/redir?http://domain2.com/index.html" correctly.

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-11 20:43 --- Fixed on the mainline for 4.0.0. -- What|Removed |Added Status|NEW

[Bug libgcj/13972] gcj's URL() does not handle ContextURL + "/redir?http://domain2.com/index.html" correctly.

2005-01-11 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-11 20:40 --- Subject: Bug 13972 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-11 20:40:11 Modified files: libjava: ChangeLog libjava/java/net:

[Bug driver/19281] file format not recognized; treating as linker script

2005-01-11 Thread dje at gcc dot gnu dot org
--- Additional Comments From dje at gcc dot gnu dot org 2005-01-11 20:29 --- Jeff, The problem does not have to be the source code or the compiler, it can be the way that you are invoking the compiler. I do not understand why you are invoking the compiler with -M -fpreprocessed -- you

[Bug libgcj/15157] Lack of chuncked encoding handling causes junk in http downloads

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-11 20:28 --- Fixed. on the mainline. -- What|Removed |Added Status|ASSIGNED

[Bug libgcj/16229] [meta-bug] http, URL, and URLConnection issues

2005-01-11 Thread pinskia at gcc dot gnu dot org
-- Bug 16229 depends on bug 15157, which changed state. Bug 15157 Summary: Lack of chuncked encoding handling causes junk in http downloads http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15157 What|Old Value |New Value

[Bug libgcj/14013] HttpURLConnection.receiveReply() does not deal with code only responses

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-11 20:27 --- Fixed. on the mainline. -- What|Removed |Added Status|ASSIGNED

[Bug libgcj/16229] [meta-bug] http, URL, and URLConnection issues

2005-01-11 Thread pinskia at gcc dot gnu dot org
-- Bug 16229 depends on bug 14013, which changed state. Bug 14013 Summary: HttpURLConnection.receiveReply() does not deal with code only responses http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14013 What|Old Value |New Value -

[Bug libgcj/16229] [meta-bug] http, URL, and URLConnection issues

2005-01-11 Thread pinskia at gcc dot gnu dot org
-- Bug 16229 depends on bug 15509, which changed state. Bug 15509 Summary: URL.connect does not include port into the "Host:" header field of HTTP request http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15509 What|Old Value |New Value -

[Bug libgcj/15509] URL.connect does not include port into the "Host:" header field of HTTP request

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-11 20:27 --- Fixed. on the mainline. -- What|Removed |Added Status|ASSIGNED

[Bug libgcj/16229] [meta-bug] http, URL, and URLConnection issues

2005-01-11 Thread pinskia at gcc dot gnu dot org
-- Bug 16229 depends on bug 14012, which changed state. Bug 14012 Summary: HttpURLConnection.setRequestProperty() is not case insensitive http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14012 What|Old Value |New Value --

[Bug libgcj/14012] HttpURLConnection.setRequestProperty() is not case insensitive

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-11 20:27 --- Fixed. on the mainline. -- What|Removed |Added Status|ASSIGNED

[Bug driver/19281] file format not recognized; treating as linker script

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-11 20:26 --- Considering -M does not actually compile your code, no I am not hard to convince. Read the manual for gcc and you will see -M does not compile the code at all, only gets the dependices for include files.

[Bug driver/19281] file format not recognized; treating as linker script

2005-01-11 Thread jeff at connectrf dot com
--- Additional Comments From jeff at connectrf dot com 2005-01-11 20:23 --- Andrew, You are sure hard to convince... Where did the error go? Full rebuild of configuration Release for project Auth make -k clean all rm -rf authtest.o authtestdlg.o stdafx.o authtes

[Bug libgcj/15157] Lack of chuncked encoding handling causes junk in http downloads

2005-01-11 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-11 20:20 --- Subject: Bug 15157 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-11 20:19:57 Modified files: libjava: ChangeLog Makefile.am Makefile.in

[Bug libgcj/14013] HttpURLConnection.receiveReply() does not deal with code only responses

2005-01-11 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-11 20:20 --- Subject: Bug 14013 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-11 20:19:57 Modified files: libjava: ChangeLog Makefile.am Makefile.in

[Bug libgcj/15509] URL.connect does not include port into the "Host:" header field of HTTP request

2005-01-11 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-11 20:20 --- Subject: Bug 15509 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-11 20:19:57 Modified files: libjava: ChangeLog Makefile.am Makefile.in

[Bug libgcj/14012] HttpURLConnection.setRequestProperty() is not case insensitive

2005-01-11 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-11 20:20 --- Subject: Bug 14012 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-11 20:19:57 Modified files: libjava: ChangeLog Makefile.am Makefile.in

[Bug target/18761] C++ ABI bug on OS X with embed types

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-11 20:20 --- Fixed on the mainline. Also committed a testcase so we don't fail again and find other targets which are wrong. -- What|Removed |Added

[Bug target/18761] C++ ABI bug on OS X with embed types

2005-01-11 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-11 20:19 --- Subject: Bug 18761 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-11 20:19:36 Modified files: gcc/testsuite : ChangeLog Added files: gcc/t

[Bug target/18761] C++ ABI bug on OS X with embed types

2005-01-11 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-11 20:15 --- Subject: Bug 18761 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-11 20:15:14 Modified files: gcc: ChangeLog gcc/config/rs6000:

[Bug driver/19281] file format not recognized; treating as linker script

2005-01-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-11 20:07 --- ../AuthTest.h:7:10: #error include 'stdafx.h' before including this file for PCH See that error, in VC++ (which is not usually a compand line driven) you have a PCH which use, do "- include stdafx.h" on th

[Bug libgcj/18840] java.io.BufferedInputStream.read(byte[],..) methods don't attempt to read as much as possible

2005-01-11 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2005-01-11 20:05 --- Fix checked in -- What|Removed |Added Status|ASSIGNED|RESOLV

[Bug libgcj/18840] java.io.BufferedInputStream.read(byte[],..) methods don't attempt to read as much as possible

2005-01-11 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-01-11 20:04 --- Subject: Bug 18840 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-01-11 20:04:33 Modified files: libjava: ChangeLog libjava/java/io: B

[Bug driver/19281] file format not recognized; treating as linker script

2005-01-11 Thread jeff at connectrf dot com
--- Additional Comments From jeff at connectrf dot com 2005-01-11 20:03 --- Andrew, If I take the exact same code, and compile it with VC++ it does not complain! However, gcc the ONLY thing that has changed, will not compile code that works! Why? Old wise one, must one rewrite entrie

[Bug c++/19373] Including STL headers in a namespace doesn't compile

2005-01-11 Thread gdr at integrable-solutions dot net
--- Additional Comments From gdr at integrable-solutions dot net 2005-01-11 19:48 --- Subject: Re: New: Including STL headers in a namespace doesn't compile "JurgenvonOerthel at hotmail dot com" <[EMAIL PROTECTED]> writes: | The following code doesn't compile: Then, don't do it. --

[Bug target/18987] [3.3/3.4 regression] [ia64] Extra '.restore sp' in tail call

2005-01-11 Thread gdr at integrable-solutions dot net
--- Additional Comments From gdr at integrable-solutions dot net 2005-01-11 19:46 --- Subject: Re: [3.3/3.4/4.0 regression] [ia64] Extra '.restore sp' in tail call "wilson at specifixinc dot com" <[EMAIL PROTECTED]> writes: | Subject: Re: [3.3/3.4/4.0 regression] [ia64] Extra |

  1   2   >