[Bug libfortran/30014] INQUIRE (iolength = xx) limited to kind=4

2006-12-08 Thread patchapp at dberlin dot org
--- Comment #2 from patchapp at dberlin dot org 2006-12-09 07:35 --- Subject: Bug number PR30014 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2006-12/msg00600.html -- http://gcc.gnu.org/bugzilla/sh

[Bug fortran/30123] Document INQUIRE, especially UNFORMATTED and FORMATTED

2006-12-08 Thread jvdelisle at gcc dot gnu dot org
--- Comment #2 from jvdelisle at gcc dot gnu dot org 2006-12-09 07:25 --- There is a similar case with STREAM= -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30123

[Bug tree-optimization/30105] reassoc can sometimes get in the way of PRE

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-12-09 06:51 --- This is just an reassiocation issue, if we have a_1 + b_2 + 1, we change it to be a_1 + 1 + b_2 which seems wrong. I wonder if we are trying to put the constant first but when calling fold, it puts it second in the

[Bug tree-optimization/30099] missed value numbering optimization (conditional-based assertions)

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-12-09 06:32 --- Basically what needs here is that if we get i == j, then we need to also add asserts (in VRP) for all the uses of i and j, which makes it an almost useless to do :). There might be another bug about this filed by me

[Bug tree-optimization/19590] IVs with the same evolution not eliminated

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #15 from pinskia at gcc dot gnu dot org 2006-12-09 06:30 --- *** Bug 30098 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug tree-optimization/30098] missed value numbering optimization

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-12-09 06:30 --- Some of these have already been fixed. This one is the same as PR 19590. *** This bug has been marked as a duplicate of 19590 *** -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug debug/23551] dwarf records for inlines appear incomplete

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #12 from pinskia at gcc dot gnu dot org 2006-12-09 05:43 --- Case 2 was filed as PR 29792 and was declared invalid. Though we get currently: .uleb128 0x2# (DIE (0x25) DW_TAG_subprogram) .ascii "foo\0" # DW_AT_name .byte 0x1 # DW_AT_decl_fil

[Bug target/30039] HPPA: Incorrect code generated on 64bit host

2006-12-08 Thread danglin at gcc dot gnu dot org
--- Comment #6 from danglin at gcc dot gnu dot org 2006-12-09 03:52 --- Fixed. -- danglin at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRM

[Bug tree-optimization/30126] [4.3 Regression] ICE genautomata.c:6060

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-12-09 03:36 --- This problem is weird. It is also hard to reduce. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30126

[Bug target/30039] HPPA: Incorrect code generated on 64bit host

2006-12-08 Thread danglin at gcc dot gnu dot org
--- Comment #5 from danglin at gcc dot gnu dot org 2006-12-09 03:36 --- Subject: Bug 30039 Author: danglin Date: Sat Dec 9 03:35:43 2006 New Revision: 119685 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=119685 Log: PR target/30039 * pa.md (high:DI and lo_sum:D

[Bug target/30039] HPPA: Incorrect code generated on 64bit host

2006-12-08 Thread danglin at gcc dot gnu dot org
--- Comment #4 from danglin at gcc dot gnu dot org 2006-12-09 03:19 --- Subject: Bug 30039 Author: danglin Date: Sat Dec 9 03:19:05 2006 New Revision: 119684 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=119684 Log: PR target/30039 * pa.md (high:DI and lo_sum:D

[Bug target/30039] HPPA: Incorrect code generated on 64bit host

2006-12-08 Thread danglin at gcc dot gnu dot org
--- Comment #3 from danglin at gcc dot gnu dot org 2006-12-09 03:14 --- Subject: Bug 30039 Author: danglin Date: Sat Dec 9 03:14:42 2006 New Revision: 119683 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=119683 Log: PR target/30039 * pa.md (high:DI and lo_sum:D

[Bug c/30128] New: Strange code generated

2006-12-08 Thread terra at gnome dot org
The program... /* --- */ #define GSF_LE_SET_GUINT32(p, dat) \ ((*((char *)(p) + 0) = (char) ((dat)) & 0xff),\ (*((char *)(p) + 1) = (char) ((dat) >> 8) & 0xff),\ (*((char *)(p) + 2) = (cha

[Bug c/19978] overflow in expression of constants should not cause multiple warnings

2006-12-08 Thread patchapp at dberlin dot org
--- Comment #5 from patchapp at dberlin dot org 2006-12-09 01:10 --- Subject: Bug number PR c/19978 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2006-12/msg00588.html -- http://gcc.gnu.org/bugzilla

[Bug c/30054] -Wc++-compat does not catch goto past initialization

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-12-09 01:05 --- (In reply to comment #1) > Why is this even an error, since neither 'i' or 'j' are referenced after the > goto point... Because that is what the C++ standard says ... C defines this case slightly different. --

[Bug c/30054] -Wc++-compat does not catch goto past initialization

2006-12-08 Thread d3ck0r at gmail dot com
--- Comment #1 from d3ck0r at gmail dot com 2006-12-09 01:02 --- Why is this even an error, since neither 'i' or 'j' are referenced after the goto point... I started to post a similar bug, but that the bug is this error is entirely inaccurate, and causes otherwise valid code to not be c

[Bug fortran/30068] Ambigous interfaces not detected

2006-12-08 Thread burnus at gcc dot gnu dot org
--- Comment #12 from burnus at gcc dot gnu dot org 2006-12-09 00:53 --- Paul, > Fix for this and pr30096 > This one regtests and fixes PR30096. > I will submit it tomorrow. Hmm, then I submitted too early. But you might save some time by doing simply a reply to http://gcc.gnu.org/ml/for

[Bug libstdc++/30127] New: std::has_facet returns true for not installed derived facets

2006-12-08 Thread sebor at roguewave dot com
The program below is expected to run successfully to completion since there is no MyCtype facet installed in the classic locale (and, in fact, no facet of that type can exist since it doesn't have an accessible ctor). $ cat u.cpp && g++ -dumpversion && g++ u.cpp -static && ./a.out #include #inclu

[Bug target/30039] HPPA: Incorrect code generated on 64bit host

2006-12-08 Thread danglin at gcc dot gnu dot org
--- Comment #2 from danglin at gcc dot gnu dot org 2006-12-08 23:41 --- Subject: Bug 30039 Author: danglin Date: Fri Dec 8 23:41:03 2006 New Revision: 119669 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=119669 Log: PR target/30039 * pa.md (high:DI and lo_sum:D

[Bug fortran/30115] allocate() interface pessimizes aliasing

2006-12-08 Thread tkoenig at gcc dot gnu dot org
--- Comment #6 from tkoenig at gcc dot gnu dot org 2006-12-08 23:35 --- I forgot integer, allocatable :: a(:) integer, pointer :: b(:) :-) > allocate(a(4)) > ! This should set the stat code and change the size. > allocate(a(3),stat=i) > if (i == 0) call abort > if (

[Bug libfortran/26893] kinds.h not generated, causing failure

2006-12-08 Thread jbuck at gcc dot gnu dot org
--- Comment #22 from jbuck at gcc dot gnu dot org 2006-12-08 23:34 --- Slow down, please! You don't need to set speed records for resolving bugs here. My report is not a duplicate of the bug you tried to attach it to, because I did not use -j at all! make -k check for gmp passes all t

[Bug tree-optimization/30126] [4.3 Regression] ICE genautomata.c:6060

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-12-08 23:28 --- Reducing ... I think slightly different glibc headers are causing you to see this issue. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/30123] Document INQUIRE, especially UNFORMATTED and FORMATTED

2006-12-08 Thread jvdelisle at gcc dot gnu dot org
--- Comment #1 from jvdelisle at gcc dot gnu dot org 2006-12-08 23:22 --- A quick look at the IBM Fortran manual on this states that the (un)formatted= specifier indicates whether or not a file may be connected or not as an (un)formatted file. The wording appears clearer than the Fortr

[Bug tree-optimization/30126] [4.3 Regression] ICE genautomata.c:6060

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-12-08 23:20 --- What is interesting is that I don't get a segfault during my bootstrap but I do with your preprocessed source. #0 remove_phi_node (phi=0xb6f8fd20, prev=0x0) at /home/apinski/src/gcc-fsf/local/gcc/gcc/tree-phinodes.c

[Bug bootstrap/30126] ICE genautomata.c:6060

2006-12-08 Thread bkoz at gcc dot gnu dot org
--- Comment #1 from bkoz at gcc dot gnu dot org 2006-12-08 23:17 --- Created an attachment (id=12772) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12772&action=view) pre-processed sources -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30126

[Bug libfortran/29866] building libgfortran fails because of kinds.h

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-12-08 23:16 --- *** Bug 26893 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug bootstrap/30126] New: ICE genautomata.c:6060

2006-12-08 Thread bkoz at gcc dot gnu dot org
Fail in make bootstrap on FC6. Starting on r119634 through at least r119668. /mnt/share/bld/gcc/./prev-gcc/xgcc -B/mnt/share/bld/gcc/./prev-gcc/ -B/mnt/share/bld/H-x86-gcc/i686-pc-linux-gnu/bin/ -O2 -g -fomit-frame-pointer -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-proto

[Bug libfortran/26893] kinds.h not generated, causing failure

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #21 from pinskia at gcc dot gnu dot org 2006-12-08 23:16 --- (In reply to comment #20) > I'd like to reopen this bug, as I'm seeing it on sparc-sun-solaris2.8. I have > built the most recent GMP and MPFR versions and have the appropriate > --with-gmp > and --with-mpfr line

[Bug libfortran/26893] kinds.h not generated, causing failure

2006-12-08 Thread jbuck at gcc dot gnu dot org
--- Comment #20 from jbuck at gcc dot gnu dot org 2006-12-08 23:10 --- I'd like to reopen this bug, as I'm seeing it on sparc-sun-solaris2.8. I have built the most recent GMP and MPFR versions and have the appropriate --with-gmp and --with-mpfr lines. At first, MPFR wouldn't build beca

[Bug fortran/30115] allocate() interface pessimizes aliasing

2006-12-08 Thread tkoenig at gcc dot gnu dot org
--- Comment #5 from tkoenig at gcc dot gnu dot org 2006-12-08 22:54 --- (In reply to comment #1) >if (TYPE_PRECISION (gfc_array_index_type) == 32) > { >if (allocatable_array) > - allocate = gfor_fndecl_allocate_array; > + allocate = gfor_fndecl_internal_mall

[Bug tree-optimization/30087] regressions in the gfortran testsuite with -ftree-vectorize

2006-12-08 Thread burnus at gcc dot gnu dot org
--- Comment #1 from burnus at gcc dot gnu dot org 2006-12-08 22:25 --- Backtrace of the first (second looks similar) #5 0x0077ae99 in tree_class_check_failed (node=0x2b9044b37240, cl=tcc_expression, file=, line=2578, function=0xa8b500 "vect_permute_store_chain") at gcc/tree

[Bug tree-optimization/30125] [4.3 regression] Wrong-code due to aliasing

2006-12-08 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|normal |blocker Keywords||alias http:

[Bug tree-optimization/30125] [4.3 regression] Wrong-code due to aliasing

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-12-08 22:16 --- Woops wrong testcase. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added S

[Bug tree-optimization/30125] [4.3 regression] Wrong-code due to aliasing

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-12-08 21:46 --- In fact it was: http://gcc.gnu.org/ml/gcc-testresults/2006-12/msg00343.html -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug tree-optimization/30125] [4.3 regression] Wrong-code due to aliasing

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-12-08 21:45 --- This should have been fixed by: 2006-12-05 Daniel Berlin <[EMAIL PROTECTED]> * tree-ssa-structalias.c (set_used_smts): Re-fix pr29156. Optimize to avoid marking more SMT's as used when they aren't.

[Bug tree-optimization/30125] [4.3 regression] Wrong-code due to aliasing

2006-12-08 Thread reichelt at gcc dot gnu dot org
-- reichelt at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.3.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30125

[Bug tree-optimization/30125] New: [4.3 regression] Wrong-code due to aliasing

2006-12-08 Thread reichelt at gcc dot gnu dot org
Since 2006-12-05 the following test is failing (used to be PR 27768): FAIL: g++.dg/opt/alias4.C execution test According to the testresults mailing list, the bug appeared between rev. 119481 ( http://gcc.gnu.org/ml/gcc-testresults/2006-12/msg00154.html ) and rev. 119532 ( http://gcc.gnu.org/ml/gcc

[Bug c/30124] gcc/vec.h line 538 references "vec" which is undefined (should be vec_)

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-12-08 21:33 --- offsetof (VEC(T,base),vec) I see this: typedef struct VEC(T,B) \ { \ unsigned num;

[Bug c/30124] New: gcc/vec.h line 538 references "vec" which is undefined (should be vec_)

2006-12-08 Thread mankatob at yahoo dot com
the code reads: static inline size_t VEC_OP (T,base,embedded_size) \ (int alloc_) \ { \ return offsetof (VEC(T,base),vec) + alloc_ * sizeof(T);\ } \ ^--- this makes it hardly compileable -- Summary: gcc/vec.h line 538 refere

[Bug tree-optimization/30092] Segmentation fault with -ftreevectorize and SQRT()

2006-12-08 Thread tkoenig at gcc dot gnu dot org
--- Comment #2 from tkoenig at gcc dot gnu dot org 2006-12-08 21:05 --- Hi Tobias, could write this into a test case for gfortran.dg? If it broke once, we should at make sure it doesn't break again. Thomas -- tkoenig at gcc dot gnu dot org changed: What|Removed

[Bug fortran/30096] Interface bug: gfortran falsely detect ambigious interface, scoping problem?

2006-12-08 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-12-08 21:01 --- (In reply to comment #3) > (In reply to comment #2) Fixed by the latest version of the pr30068 patch. Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/30068] Ambigous interfaces not detected

2006-12-08 Thread pault at gcc dot gnu dot org
--- Comment #11 from pault at gcc dot gnu dot org 2006-12-08 21:00 --- Created an attachment (id=12771) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12771&action=view) Fix for this and pr30096 This one regtests and fixes PR30096. I will submit it tomorrow. Paul -- pault at

[Bug libgcj/30110] classpath external missing from src.zip

2006-12-08 Thread tromey at gcc dot gnu dot org
--- Comment #4 from tromey at gcc dot gnu dot org 2006-12-08 20:34 --- I checked it in to 4.2 and to the gcj-eclipse-merge-branch. The latter should be merged to trunk reasonably soon. -- tromey at gcc dot gnu dot org changed: What|Removed |Added -

[Bug libgcj/30110] classpath external missing from src.zip

2006-12-08 Thread tromey at gcc dot gnu dot org
--- Comment #3 from tromey at gcc dot gnu dot org 2006-12-08 20:33 --- Subject: Bug 30110 Author: tromey Date: Fri Dec 8 20:33:22 2006 New Revision: 119665 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=119665 Log: 2006-12-08 Ben Konrath <[EMAIL PROTECTED]> PR libgcj

[Bug libgcj/30110] classpath external missing from src.zip

2006-12-08 Thread tromey at gcc dot gnu dot org
--- Comment #2 from tromey at gcc dot gnu dot org 2006-12-08 20:30 --- Subject: Bug 30110 Author: tromey Date: Fri Dec 8 20:30:14 2006 New Revision: 119664 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=119664 Log: 2006-12-08 Ben Konrath <[EMAIL PROTECTED]> PR libgcj

[Bug fortran/29975] [meta-bugs] ICEs with CP2K

2006-12-08 Thread patchapp at dberlin dot org
--- Comment #27 from patchapp at dberlin dot org 2006-12-08 19:50 --- Subject: Bug number PR29975 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2006-12/msg00560.html -- http://gcc.gnu.org/bugzilla/s

[Bug rtl-optimization/30113] ICE in trunc_int_for_mode

2006-12-08 Thread rakdver at gcc dot gnu dot org
-- rakdver at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |rakdver at gcc dot gnu dot |dot org

[Bug target/30120] [4.3 Regression] silent miscompilation of argument passing

2006-12-08 Thread uros at gcc dot gnu dot org
--- Comment #3 from uros at gcc dot gnu dot org 2006-12-08 18:20 --- Subject: Bug 30120 Author: uros Date: Fri Dec 8 18:20:25 2006 New Revision: 119663 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=119663 Log: PR target/30120 * reg-stack.c (convert_regs_entry):

[Bug target/30120] [4.3 Regression] silent miscompilation of argument passing

2006-12-08 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Component|c |target Target Milestone|--- |4.3.0 http:/

[Bug libfortran/30114] Inquire formatted yields erroneous results

2006-12-08 Thread burnus at gcc dot gnu dot org
--- Comment #5 from burnus at gcc dot gnu dot org 2006-12-08 18:18 --- Close bug as won't fix. I opened PR 30123 for the documentation. -- burnus at gcc dot gnu dot org changed: What|Removed |Added --

[Bug fortran/30123] New: Document INQUIRE, especially UNFORMATTED and FORMATTED

2006-12-08 Thread burnus at gcc dot gnu dot org
We currently don't have any documentation for the INQUIRE statement; it should not be put into the Intrinsic Procedures chapter as it is not an intrinsic procedure. Maybe create a "File Operation I/O Statements" chapter? Inquire should be straight forward (with the problem between Fortran 95 and F

[Bug c/26542] bogus diagnostic with -pedantic?: format '%p'; expects type 'void*', but argument 2 has type 'A*'

2006-12-08 Thread pinskia at gmail dot com
--- Comment #8 from pinskia at gmail dot com 2006-12-08 18:17 --- Subject: Re: bogus diagnostic with -pedantic?: format '%p'; expects type 'void*', but argument 2 has type 'A*' On Fri, 2006-12-08 at 11:07 +, vz-gcc at zeitlins dot org wrote: > Just for my personal education

Re: [Bug c/26542] bogus diagnostic with -pedantic?: format '%p'; expects type 'void*', but argument 2 has type 'A*'

2006-12-08 Thread Andrew Pinski
On Fri, 2006-12-08 at 11:07 +, vz-gcc at zeitlins dot org wrote: > Just for my personal education, could you please tell which target(s) > pass > "char *" differently from "void *" in this context? A made up target (at least for now). :) -- Pinski

[Bug libfortran/30114] Inquire formatted yields erroneous results

2006-12-08 Thread burnus at gcc dot gnu dot org
--- Comment #4 from burnus at gcc dot gnu dot org 2006-12-08 17:17 --- (In reply to comment #3) > In the case of (un)formatted= there may be a file or device that would > not support unformatted I/O due to internal restrictions on the data set, for > example ASCII only. In that case unf

[Bug testsuite/30119] libjava testsuite output is erratic and unhelpful

2006-12-08 Thread aph at gcc dot gnu dot org
--- Comment #5 from aph at gcc dot gnu dot org 2006-12-08 16:45 --- Set the classpath gij -classpath : PR18699 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30119

[Bug testsuite/30119] libjava testsuite output is erratic and unhelpful

2006-12-08 Thread amylaar at gcc dot gnu dot org
--- Comment #4 from amylaar at gcc dot gnu dot org 2006-12-08 15:46 --- (In reply to comment #3) > Run it with the libjava/gij PR18699.class ls -l PR18699.class -rw-r--r-- 1 amylaar users 1688 2006-12-08 15:52 PR18699.class [EMAIL PROTECTED]:~/bld/2006-11-27-29858/i686/i686-pc-linux-g

[Bug testsuite/30119] libjava testsuite output is erratic and unhelpful

2006-12-08 Thread aph at gcc dot gnu dot org
--- Comment #3 from aph at gcc dot gnu dot org 2006-12-08 15:20 --- Run it with the libjava/gij PR18699.class -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30119

[Bug rtl-optimization/30121] ICE on frtl-abstract-sequences and mthumb.

2006-12-08 Thread ramana dot radhakrishnan at codito dot com
--- Comment #1 from ramana dot radhakrishnan at codito dot com 2006-12-08 15:14 --- The ICE comes from compute_init_costs in rtl-factoring.c where rtx_store is set to be /* Pattern for storing address. */ rtx_store = gen_rtx_SET (VOIDmode, reg, gen_symbol_ref_rtx_for_label (label

[Bug rtl-optimization/30121] New: ICE on frtl-abstract-sequences and mthumb.

2006-12-08 Thread ramana dot radhakrishnan at codito dot com
ons. Configured with: /mnt/tools/fsf/build/combined-arm-none-eabi-gcc-4_2-2006-12-08/configure --target=arm-none-eabi --prefix=/mnt/tools/fsf/install/arm-none-eabi-gcc-4_2-2006-12-08 --enable-languages=c,c++ --disable-nls --with-newlib --disable-gdbtk --disable-libssp Thread model: single gcc

[Bug testsuite/30119] libjava testsuite output is erratic and unhelpful

2006-12-08 Thread amylaar at gcc dot gnu dot org
--- Comment #2 from amylaar at gcc dot gnu dot org 2006-12-08 14:59 --- (In reply to comment #1) > It's not necessary to do any I/O redirection when byte compiling: just execute > the command itself without the "2>" etc. > All right, that gives me a file 'PR18699.class' But how is thi

[Bug libfortran/30114] Inquire formatted yields erroneous results

2006-12-08 Thread jvdelisle at gcc dot gnu dot org
--- Comment #3 from jvdelisle at gcc dot gnu dot org 2006-12-08 14:58 --- Yes, the FORM= is what you use if you want to determine the current opened status of a file. We had discussion of this question on list just a few months ago. In the case of (un)formatted= there may be a file or

[Bug inline-asm/23200] [4.0/4.1/4.2/4.3 regression] rejects "i"(&var + 1)

2006-12-08 Thread amacleod at redhat dot com
--- Comment #26 from amacleod at redhat dot com 2006-12-08 14:32 --- The new version of TER was just checked into mainline. This should resolve this bug. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23200

[Bug c/30120] [4.3 Regression] silent miscompilation of argument passing

2006-12-08 Thread ubizjak at gmail dot com
--- Comment #2 from ubizjak at gmail dot com 2006-12-08 13:54 --- (In reply to comment #1) > Confirmed. Reduced testcase: > We need straighten_stack() in convert_regs_entry() for the case where some arguments are left unused. -- ubizjak at gmail dot com changed: What

[Bug tree-optimization/17687] sincos tree representation causes extra addressable vars

2006-12-08 Thread patchapp at dberlin dot org
--- Comment #19 from patchapp at dberlin dot org 2006-12-08 13:10 --- Subject: Bug number PR17687 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2006-12/msg00536.html -- http://gcc.gnu.org/bugzilla/s

[Bug c/30120] [4.3 Regression] silent miscompilation of argument passing

2006-12-08 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2006-12-08 12:46 --- Confirmed. Reduced testcase: static void foo (double a, double weight, const double *ring, double *phase) { *phase = *ring * weight; } void foo2 (void) { foo (0, 1, (double*)0, (double*)0); } int main(void)

[Bug c/30120] New: silent miscompilation of argument passing(?)

2006-12-08 Thread martin at mpa-garching dot mpg dot de
Current mainline gcc appears to miscompile the following code: ==begin== static void foo (double a, double weight, const double *ring, double *phase) { *phase = *ring * weight; } static void foo2 (void) { foo (0, 1, (double*)0, (double*)0); } static void foo3 (void) { foo2();

[Bug other/30083] double quotes in Makefile confuse solaris /bin/sh

2006-12-08 Thread marc dot glisse at normalesup dot org
--- Comment #5 from marc dot glisse at normalesup dot org 2006-12-08 12:19 --- (In reply to comment #4) > Except you did not read instructions so what is the difference? Ok say you forget I mentionned solaris /bin/sh. I just believe it would be more consistant to use single quotes inst

[Bug testsuite/30119] libjava testsuite output is erratic and unhelpful

2006-12-08 Thread aph at gcc dot gnu dot org
--- Comment #1 from aph at gcc dot gnu dot org 2006-12-08 11:46 --- It's not necessary to do any I/O redirection when byte compiling: just execute the command itself without the "2>" etc. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30119

[Bug testsuite/30119] New: libjava testsuite output is erratic and unhelpful

2006-12-08 Thread amylaar at gcc dot gnu dot org
I have tested the patch for PR rtl-optimization/29858 in revision 119261 on gcc01 (i686-pc-linux-gnu) Compared to a pristine build of revision 119055, these are the additional failures: > FAIL: gcc.dg/visibility-11.c scan-assembler [EMAIL PROTECTED] 14a16,17 > FAIL: gcc.dg/vect/vect-pow-1.c scan-t

[Bug libgcj/29869] LogManager class loading failure with Tomcat

2006-12-08 Thread twisti at complang dot tuwien dot ac dot at
--- Comment #1 from twisti at complang dot tuwien dot ac dot at 2006-12-08 11:38 --- I can confirm the bug with CACAO and current CVS head. -- twisti at complang dot tuwien dot ac dot at changed: What|Removed |Added ---

[Bug c/26542] bogus diagnostic with -pedantic?: format '%p'; expects type 'void*', but argument 2 has type 'A*'

2006-12-08 Thread vz-gcc at zeitlins dot org
--- Comment #7 from vz-gcc at zeitlins dot org 2006-12-08 11:07 --- Just for my personal education, could you please tell which target(s) pass "char *" differently from "void *" in this context? Thanks! -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26542

[Bug c++/30111] Value-initialization of POD base class doesn't initialize members

2006-12-08 Thread gcc-bugzilla at kayari dot org
--- Comment #4 from gcc-bugzilla at kayari dot org 2006-12-08 10:36 --- Richard, there's no difference between pod() and p() in this case, both are value-initialisations of a POD class, therefore all non-static data members should be value-initialised. I cited 8.5p5 for good reason :)

[Bug middle-end/29272] [4.2 Regression] memcpy optimization causes wrong-code

2006-12-08 Thread cvs-commit at developer dot classpath dot org
--- Comment #17 from cvs-commit at developer dot classpath dot org 2006-12-08 10:32 --- Subject: Bug 29272 CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_93-branch Changes by: Mark Wielaard 06/12/08 10:31:50 Modified files: .

[Bug middle-end/29272] [4.2 Regression] memcpy optimization causes wrong-code

2006-12-08 Thread cvs-commit at developer dot classpath dot org
--- Comment #16 from cvs-commit at developer dot classpath dot org 2006-12-08 10:30 --- Subject: Bug 29272 CVSROOT:/cvsroot/classpath Module name:classpath Branch: generics-branch Changes by: Mark Wielaard 06/12/08 10:30:10 Modified files: .

[Bug fortran/27546] IMPORT is broken

2006-12-08 Thread burnus at gcc dot gnu dot org
--- Comment #15 from burnus at gcc dot gnu dot org 2006-12-08 09:50 --- Mark fixed. Hopefully, I didn't miss anything. -- burnus at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug fortran/27546] IMPORT is broken

2006-12-08 Thread burnus at gcc dot gnu dot org
--- Comment #14 from burnus at gcc dot gnu dot org 2006-12-08 09:46 --- Subject: Bug 27546 Author: burnus Date: Fri Dec 8 09:45:44 2006 New Revision: 119651 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=119651 Log: fortran/ 2006-12-08 Tobias Burnus <[EMAIL PROTECTED]> P

[Bug libfortran/30114] Inquire formatted yields erroneous results

2006-12-08 Thread burnus at gcc dot gnu dot org
--- Comment #2 from burnus at gcc dot gnu dot org 2006-12-08 09:25 --- I asked now at computer.lang.fortran for advise what is ment by by the (UN)FORMATTED specifier of INQUIRE http://groups.google.com/group/comp.lang.fortran/browse_thread/thread/cd8524acdbea6b6e/ One reliable way to te

[Bug driver/30091] specs file: [EMAIL PROTECTED]' not documented

2006-12-08 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-12-08 09:25 --- specs are an internal format really. It is very subject to change each release. Also some time in the future we might decide to get rid of the specs. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30091

Picasso Events Team

2006-12-08 Thread Picasso Middle East | Events Team
Take the Lead with Us! www.picassome.com

[Bug libfortran/30114] Inquire formatted yields erroneous results

2006-12-08 Thread burnus at gcc dot gnu dot org
--- Comment #1 from burnus at gcc dot gnu dot org 2006-12-08 08:23 --- Created an attachment (id=12770) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12770&action=view) Test program With the program below I get with NAG f95, sunf95 and ifort: Inquire by UNIT Non-existing, close

[Bug c++/29732] [4.0/4.1/4.2 regression] ICE on invalid friend declaration

2006-12-08 Thread mmitchel at gcc dot gnu dot org
--- Comment #3 from mmitchel at gcc dot gnu dot org 2006-12-08 08:10 --- Fixed in 4.3.0. -- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Summa

[Bug c++/30108] internal compiler error: in make_decl_rtl, at varasm.c:890

2006-12-08 Thread rhaschke at techfak dot uni-bielefeld dot de
--- Comment #7 from rhaschke at techfak dot uni-bielefeld dot de 2006-12-08 08:08 --- You are right. The return type of STATE and the actual methods differ. Actually they should have the same type, i.e.: typedef BaseRobot::STATE (BaseRobot::*STATE)(int); STATE ready (int); ... Because