[Bug middle-end/35204] [4.3 Regression] crash by too deep recursion in DFS tree-ssa-sccvn.c:1898

2008-02-16 Thread marcus at jet dot franken dot de
--- Comment #12 from marcus at jet dot franken dot de 2008-02-16 08:45 --- i configure gcc with just --enable-languages=cso whatever is currently the default. btw, today it builds without too deep recursion again :( -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35204

[Bug middle-end/35204] [4.3 Regression] crash by too deep recursion in DFS tree-ssa-sccvn.c:1898

2008-02-16 Thread steven at gcc dot gnu dot org
--- Comment #13 from steven at gcc dot gnu dot org 2008-02-16 09:33 --- Re. comment #8 You can't terminate the DFS before a complete SCC is found, it will break the correctness of the SCC-VN algorithm. You'd start another DFS from a not-yet-marked SSA name that is in the SCC's DFS

[Bug middle-end/35204] [4.3 Regression] crash by too deep recursion in DFS tree-ssa-sccvn.c:1898

2008-02-16 Thread steven at gcc dot gnu dot org
--- Comment #14 from steven at gcc dot gnu dot org 2008-02-16 09:40 --- For those who have no idea what we're talking about, check out these links. The first link is Tarjan's algorithm, which is what the tree-ssa-sccvn.c SCC-finder is based on. The second link is Pearce's improved

[Bug middle-end/35215] ICE: verify_histograms failed with -fprofile-use

2008-02-16 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2008-02-16 10:54 --- Happens only with checking enabled. Honza, can you have a look here? -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/35204] [4.3 Regression] crash by too deep recursion in DFS tree-ssa-sccvn.c:1898

2008-02-16 Thread rguenth at gcc dot gnu dot org
--- Comment #15 from rguenth at gcc dot gnu dot org 2008-02-16 10:41 --- re comment #13 - limiting the DFS walk depth will of course only work if we then abort SCCVN completely (like we do for the SCC size limit). But still finding a magic number that fixes only the case where we blow

[Bug libstdc++/35209] __gnu_cxx::stdio_sync_filebufchar constructor isn't exported by the DSO

2008-02-16 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2008-02-16 10:45 --- Confirmed. Fails since this is a valid program. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/35204] [4.3 Regression] crash by too deep recursion in DFS tree-ssa-sccvn.c:1898

2008-02-16 Thread rguenth at gcc dot gnu dot org
--- Comment #16 from rguenth at gcc dot gnu dot org 2008-02-16 11:23 --- The problem with doing a non-recursive version of DFS as for GCC SCCVN is to split the FOR_EACH_PHI_OR_STMT_USE walk. You would need to open-code this and keep a stack of ssa_op_iters, ugly but certainly not

[Bug middle-end/35204] [4.3 Regression] crash by too deep recursion in DFS tree-ssa-sccvn.c:1898

2008-02-16 Thread rguenth at gcc dot gnu dot org
--- Comment #17 from rguenth at gcc dot gnu dot org 2008-02-16 12:11 --- Created an attachment (id=15167) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15167action=view) patch that still needs some love Something like this? -- rguenth at gcc dot gnu dot org changed:

[Bug middle-end/35204] [4.3 Regression] crash by too deep recursion in DFS tree-ssa-sccvn.c:1898

2008-02-16 Thread rguenth at gcc dot gnu dot org
--- Comment #18 from rguenth at gcc dot gnu dot org 2008-02-16 12:49 --- Created an attachment (id=15168) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15168action=view) patch Patch which got some minimal testing and love. -- rguenth at gcc dot gnu dot org changed:

[Bug middle-end/35204] [4.3 Regression] crash by too deep recursion in DFS tree-ssa-sccvn.c:1898

2008-02-16 Thread rguenth at gcc dot gnu dot org
--- Comment #19 from rguenth at gcc dot gnu dot org 2008-02-16 12:51 --- Note that while it definitely improves stack usage, the total memory usage is likely to go up (vectors allocate some extra heap, the iters are now addressable and thus consume full memory) and as the ssa_op_iter

[Bug fortran/35156] [patch] Deprecate -Mdir

2008-02-16 Thread fxcoudert at gcc dot gnu dot org
-- fxcoudert at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last

[Bug middle-end/35188] Missing a warning: inherently false expressions

2008-02-16 Thread tuttle at sandbox dot cz
--- Comment #5 from tuttle at sandbox dot cz 2008-02-16 14:12 --- I think we could generalize a bit: This in fact is not bound to if-statement or code reachability. Tried the following with snapshot gcc-4.3-20080215 -Wextra -Wall -Wunreachable-code. #include stdio.h int main() {

[Bug fortran/34952] Document lack of support for ENCODE/DECODE

2008-02-16 Thread fxcoudert at gcc dot gnu dot org
--- Comment #4 from fxcoudert at gcc dot gnu dot org 2008-02-16 14:10 --- Subject: Bug 34952 Author: fxcoudert Date: Sat Feb 16 14:10:12 2008 New Revision: 132366 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=132366 Log: PR fortran/34952 * gfortran.texi: Create

[Bug middle-end/35204] [4.3 Regression] crash by too deep recursion in DFS tree-ssa-sccvn.c:1898

2008-02-16 Thread dberlin at dberlin dot org
--- Comment #20 from dberlin at gcc dot gnu dot org 2008-02-16 14:56 --- Subject: Re: [4.3 Regression] crash by too deep recursion in DFS tree-ssa-sccvn.c:1898 So, there are better SCC algorithms. In particular, Nuutilla's algorithm will avoid placing a bunch of nodes on the stack

[Bug fortran/34952] Document lack of support for ENCODE/DECODE

2008-02-16 Thread fxcoudert at gcc dot gnu dot org
--- Comment #5 from fxcoudert at gcc dot gnu dot org 2008-02-16 14:12 --- Fixed. -- fxcoudert at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug middle-end/35204] [4.3 Regression] crash by too deep recursion in DFS tree-ssa-sccvn.c:1898

2008-02-16 Thread rguenth at gcc dot gnu dot org
--- Comment #21 from rguenth at gcc dot gnu dot org 2008-02-16 15:22 --- The patch only avoids using the stack in favor of maintaining heap allocated stacks. The algorithm is still recursively walking the graph. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35204

[Bug c/28368] -std=c89 doesn't warn about gcc's ?: extension

2008-02-16 Thread manu at gcc dot gnu dot org
--- Comment #8 from manu at gcc dot gnu dot org 2008-02-16 16:29 --- Subject: Bug 28368 Author: manu Date: Sat Feb 16 16:29:12 2008 New Revision: 132367 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=132367 Log: 2008-02-16 Manuel Lopez-Ibanez [EMAIL PROTECTED] PR

[Bug java/35217] New: TestClosureGC.jar execution - gij test regression on i686-apple-darwin9

2008-02-16 Thread howarth at nitro dot med dot uc dot edu
The TestClosureGC.jar execution - gij test case has regressed in gcc trunk on i686-apple-darwin9. set_ld_library_path_env_vars: ld_library_path=.:/sw/src/fink.build/gcc43-4.2.999-20080215/darwin_objdir/i686-apple-darwin9/./libjava/.libs invoke:

[Bug c++/35159] g++ and gfortran inoperable with no error message

2008-02-16 Thread nightstrike at gmail dot com
--- Comment #14 from nightstrike at gmail dot com 2008-02-16 17:22 --- edited title to reflect gfortran failure, as well. -- nightstrike at gmail dot com changed: What|Removed |Added

[Bug java/35217] TestClosureGC.jar execution - gij test regression on i686-apple-darwin9

2008-02-16 Thread howarth at nitro dot med dot uc dot edu
--- Comment #1 from howarth at nitro dot med dot uc dot edu 2008-02-16 16:55 --- My mistake. The last tested revision without the testcase failure is actually 130547. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35217

iNGYEN LETOLTES!

2008-02-16 Thread pawel
Szia! Emlékszel amikor arról beszéltem hogy meg fog nyílni Magyarország legjobb letöltõ oldala? Na, ha igen, akkor itt a link. Jó szorakozást! :) http://href.hu/x/4pnj

[Bug fortran/34907] valgrind error indication from testsuite trans-types.c: gfc_typenode_for_spec

2008-02-16 Thread jvdelisle at gcc dot gnu dot org
--- Comment #7 from jvdelisle at gcc dot gnu dot org 2008-02-16 16:46 --- There are a dozen or two places where we create local temporaries of type gfc_typespec but we do not call gfc_clear_ts before using it. This leaves things potentially uninitialized depending on how it is used.

[Bug middle-end/35188] Missing a warning: inherently false expressions

2008-02-16 Thread tuttle at sandbox dot cz
--- Comment #7 from tuttle at sandbox dot cz 2008-02-16 18:09 --- That's great, even my older gcc 4.1.3 warns for every if-body with -O1 -Wunreachable code. Shame on me I did not came with -O1 myself, sorry. Anyway my first code line int var1 = (1 0); is not about the execution

[Bug regression/35218] [4.3 regression] 4.3 20080215 snapshot build failure

2008-02-16 Thread eric dot weddington at atmel dot com
--- Comment #1 from eric dot weddington at atmel dot com 2008-02-16 18:14 --- Note that this was built with unpatched FSF sources and is configured with: ../gcc-$version/configure \ --with-pkgversion=WinAVR $release \

[Bug c/28368] -std=c89 doesn't warn about gcc's ?: extension

2008-02-16 Thread manu at gcc dot gnu dot org
--- Comment #9 from manu at gcc dot gnu dot org 2008-02-16 18:16 --- Subject: Bug 28368 Author: manu Date: Sat Feb 16 18:15:20 2008 New Revision: 132368 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=132368 Log: 2008-02-16 Manuel Lopez-Ibanez [EMAIL PROTECTED] PR

[Bug middle-end/35188] Missing a warning: inherently false expressions

2008-02-16 Thread manu at gcc dot gnu dot org
--- Comment #8 from manu at gcc dot gnu dot org 2008-02-16 18:16 --- Closing. Thanks for the report anyway. -- manu at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/32593] Missed optimization of 'y = constant - x' operation

2008-02-16 Thread astrange at ithinksw dot com
--- Comment #3 from astrange at ithinksw dot com 2008-02-16 18:16 --- Also, 'x 32 - y' can be transformed into 'x -y', since x86 only uses the lowest 5 bits. I'm not sure about other targets. Messing with the backend doesn't seem very popular these days. I guess I should figure out

[Bug fortran/35219] New: zdotu (copy of BLAS version) works in x86, x86_64, segfaults in arm.

2008-02-16 Thread akumar at ee dot iitm dot ac dot in
Hi! The following programs are built like this: gfortran -c zdotu.f -ggdb g++ -c ztest.cpp -ggdb g++ -o ztest zdotu.o ztest.o The generated ztest segfaults on ARM on line 37 of zdotu.f with SIGSEGV, while it is perfect on other arches. Thanks! Kumar zdotu.f --- DOUBLE COMPLEX

[Bug c/28368] -std=c89 doesn't warn about gcc's ?: extension

2008-02-16 Thread manu at gcc dot gnu dot org
--- Comment #10 from manu at gcc dot gnu dot org 2008-02-16 18:20 --- The new description in GCC 4.3 and GCC 4.2.4 should clarify this from now on. -- manu at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/29549] matmul slow for complex matrices

2008-02-16 Thread fxcoudert at gcc dot gnu dot org
--- Comment #7 from fxcoudert at gcc dot gnu dot org 2008-02-16 18:50 --- Thomas is right: -fcx-limited-range sets flag_complex_method to 0, but already with flag_complex_method == 1 we have some rather good figures. Here are the execution times of 300x300 matmul on my MacBook Pro

[Bug fortran/35220] zdotu (copy of BLAS version) works in x86, x86_64, segfaults in arm.

2008-02-16 Thread fxcoudert at gcc dot gnu dot org
--- Comment #1 from fxcoudert at gcc dot gnu dot org 2008-02-16 18:51 --- *** This bug has been marked as a duplicate of 35219 *** -- fxcoudert at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/35219] zdotu (copy of BLAS version) works in x86, x86_64, segfaults in arm.

2008-02-16 Thread fxcoudert at gcc dot gnu dot org
--- Comment #1 from fxcoudert at gcc dot gnu dot org 2008-02-16 18:51 --- *** Bug 35220 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35219

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

2008-02-16 Thread pault at gcc dot gnu dot org
--- Comment #147 from pault at gcc dot gnu dot org 2008-02-16 18:54 --- (In reply to comment #146) (In reply to comment #145) current gfortran trunk seems to fail on CVS sources of CP2K with: PR34946 Joost - can this be closed again? Cheers Paul --

[Bug fortran/29549] matmul slow for complex matrices

2008-02-16 Thread fxcoudert at gcc dot gnu dot org
--- Comment #8 from fxcoudert at gcc dot gnu dot org 2008-02-16 19:00 --- The Makefile.am part was messed up by my terminal: Index: libgfortran/Makefile.am === --- libgfortran/Makefile.am (revision 132353) +++

[Bug libstdc++/35197] Native linker can't locate file for -lstdc++ with --enable-version-specific-runtime-libs

2008-02-16 Thread skunk at iskunk dot org
--- Comment #4 from skunk at iskunk dot org 2008-02-16 18:42 --- Argh... now I see what's going on here. $ grep glibcxx_toolexeclibdir.= alphaev56-dec-osf4.0g/libstdc++-v3/src/Makefile glibcxx_toolexeclibdir = ${toolexecdir}/${gcc_version}$(MULTISUBDIR) $ grep gcc_version.:=

[Bug regression/35218] New: [4.3 regression] 4.3 20080215 snapshot build failure

2008-02-16 Thread eric dot weddington at atmel dot com
The 4.3 20080215 snapshot fails to build for the AVR. Last weeks snapshot 20080208 builds fine for the AVR. Make log: cat ../../gcc-4.3-20080215/gcc/config/fp-bit.c fp-bit.c (echo @set version-GCC 4.3.0; \ if [ experimental = experimental ]; \ then echo @set DEVELOPMENT; \ else echo @clear

[Bug bootstrap/35199] [PATCH] Check for valid value of BASEVER

2008-02-16 Thread skunk at iskunk dot org
--- Comment #4 from skunk at iskunk dot org 2008-02-16 18:42 --- *** Bug 35197 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35199

[Bug middle-end/35188] Missing a warning: inherently false expressions

2008-02-16 Thread manu at gcc dot gnu dot org
--- Comment #6 from manu at gcc dot gnu dot org 2008-02-16 17:50 --- Please do not expect a compilable testcase from me. 1) I don't know whether this is a bug, 2) have no experience in gcc testcases. The above is a testcase. See http://gcc.gnu.org/bugs.html#report on how to make a

[Bug fortran/34907] valgrind error indication from testsuite trans-types.c: gfc_typenode_for_spec

2008-02-16 Thread jvdelisle at gcc dot gnu dot org
--- Comment #8 from jvdelisle at gcc dot gnu dot org 2008-02-16 18:22 --- Here is the culprit: Index: iresolve.c === --- iresolve.c (revision 132355) +++ iresolve.c (working copy) @@ -585,6 +585,7 @@ gfc_resolve_cshift

[Bug fortran/35219] zdotu (copy of BLAS version) works in x86, x86_64, segfaults in arm.

2008-02-16 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2008-02-16 19:07 --- cdouble zdotu_ Will never work as cdouble is a struct and the way it will returned is different from _Complex double and fortran's complex. -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug fortran/35220] New: zdotu (copy of BLAS version) works in x86, x86_64, segfaults in arm.

2008-02-16 Thread akumar at ee dot iitm dot ac dot in
Hi! The following programs are built like this: gfortran -c zdotu.f -ggdb g++ -c ztest.cpp -ggdb g++ -o ztest zdotu.o ztest.o The generated ztest segfaults on ARM on line 37 of zdotu.f with SIGSEGV, while it is perfect on other arches. Thanks! Kumar zdotu.f --- DOUBLE COMPLEX

[Bug c++/14258] typename in a using declaration not supported

2008-02-16 Thread starlight at binnacle dot cx
--- Comment #11 from starlight at binnacle dot cx 2008-02-16 19:28 --- Also fails with GCC 4.2.3. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14258

[Bug libstdc++/35209] __gnu_cxx::stdio_sync_filebufchar constructor isn't exported by the DSO

2008-02-16 Thread pcarlini at suse dot de
--- Comment #3 from pcarlini at suse dot de 2008-02-16 19:34 --- On it. -- pcarlini at suse dot de changed: What|Removed |Added AssignedTo|unassigned at gcc dot

[Bug c++/35159] g++ and gfortran inoperable with no error message

2008-02-16 Thread ktietz at gcc dot gnu dot org
--- Comment #15 from ktietz at gcc dot gnu dot org 2008-02-16 19:50 --- (In reply to comment #10) (In reply to comment #8) I tested this already and it didn't solved the problem. But may +a is more correct. Perhaps setting RTX_FRAME_RELATED_P is needed? Or gen_blockage() at some

[Bug target/32593] Missed optimization of 'y = constant - x' operation

2008-02-16 Thread astrange at ithinksw dot com
-- astrange at ithinksw dot com changed: What|Removed |Added Severity|normal |enhancement http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32593

[Bug target/33555] x86 missed opportunity for sbb

2008-02-16 Thread astrange at ithinksw dot com
-- astrange at ithinksw dot com changed: What|Removed |Added Severity|minor |enhancement http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33555

[Bug libobjc/34315] libobjc warnings with Win64 target=x86_64-pc-mingw32

2008-02-16 Thread ktietz at gcc dot gnu dot org
--- Comment #3 from ktietz at gcc dot gnu dot org 2008-02-16 20:46 --- Yes, for the x86_64-pc-mingw32 the %ld printing exists, but it is for long, not for long long. For this target long is 32-bit scalar, so the printf formatters are wrong. in gthr-win32.h there seems to be a more

[Bug c/35162] Documentation incorrect for -fcx-limited-range

2008-02-16 Thread jb at gcc dot gnu dot org
--- Comment #1 from jb at gcc dot gnu dot org 2008-02-16 21:47 --- CC:ing jsm to confirm this bug as people on IRC tell me you're the person that knows about complex in C99. :) -- jb at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/29549] matmul slow for complex matrices

2008-02-16 Thread rguenth at gcc dot gnu dot org
--- Comment #9 from rguenth at gcc dot gnu dot org 2008-02-16 21:58 --- Actually the middle-end parts are ok for 4.4 if you add proper documentation for the flag. But please post it once stage1 opens. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29549

[Bug target/35013] Incomplete check in RTL for pm() annotation

2008-02-16 Thread hutchinsonandy at aim dot com
--- Comment #1 from hutchinsonandy at aim dot com 2008-02-16 22:06 --- Created an attachment (id=15169) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15169action=view) Patch The attached patch allows function address expressions of the form address+k to be correctly recognized as

[Bug regression/35218] [4.3 regression] 4.3 20080215 snapshot build failure

2008-02-16 Thread j at uriah dot heep dot sax dot de
--- Comment #2 from j at uriah dot heep dot sax dot de 2008-02-16 22:20 --- I've got no troubles building today's SVN snapshot. I don't know exactly how GCC's Makefile infrastructure is working, but maybe libiberty/Makefile.in: TEXISRC = \ $(srcdir)/libiberty.texi \

[Bug libstdc++/35221] New: libstdc++ broken

2008-02-16 Thread andreast at gcc dot gnu dot org
/export/data/devel-test/gcc-svn/objdir/sparc-sun-solaris2.8/libstdc++-v3/include/parallel/types.h:74: error: 'std::tr1' has not been declared Most probably due to this ci: http://gcc.gnu.org/ml/gcc-cvs/2008-02/msg00368.html Broken on sparc-sun-solaris2.8, and at least on 32-bit and 64-bit hpux

[Bug fortran/29549] matmul slow for complex matrices

2008-02-16 Thread jb at gcc dot gnu dot org
--- Comment #10 from jb at gcc dot gnu dot org 2008-02-16 22:33 --- Actually, we could compile the entire libgfortran with -fcx-fortran-rules as well: Index: Makefile.am === --- Makefile.am (revision 132367) +++

[Bug middle-end/31738] Fortran dot product vectorization is restricted

2008-02-16 Thread jb at gcc dot gnu dot org
--- Comment #5 from jb at gcc dot gnu dot org 2008-02-16 22:40 --- Still occurs with 4.3.0 20080216 (experimental) [trunk revision 132367] i.e. only the first procedure (testvectdp) vectorizes, and that only with -ffast-math. -- jb at gcc dot gnu dot org changed

[Bug target/35222] New: [4.3 Regression] EH output contains procedure label without P' selector

2008-02-16 Thread danglin at gcc dot gnu dot org
The link command for libstdc++.sl.6.10 fails: libtool: link: /xxx/gnu/gcc/objdir/./gcc/xgcc -shared-libgcc -B/xxx/gnu/gcc/objdir/./gcc -nostdinc++ -L/xxx/gnu/gcc/objdir/hppa1.1-hp-hpux10.20/threads/libstdc++-v3/src -L/xxx/gnu/gcc/objdir/hppa1.1-hp-hpux10.20/threads/libstdc++-v3/src/.libs

[Bug bootstrap/35218] [4.3 regression] 4.3 20080215 snapshot build failure

2008-02-16 Thread rguenth at gcc dot gnu dot org
-- rguenth at gcc dot gnu dot org changed: What|Removed |Added Component|regression |bootstrap Keywords||build

[Bug libstdc++/35221] [4.3 Regression] libstdc++ broken

2008-02-16 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2008-02-16 23:18 --- Benjamin, why this late changes shortly before the release? -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug bootstrap/35218] [4.3 regression] 4.3 20080215 snapshot build failure

2008-02-16 Thread eric dot weddington at atmel dot com
--- Comment #3 from eric dot weddington at atmel dot com 2008-02-16 23:36 --- I checked and I have at-file.texi in the distributions of both 20080208 and 20080215 snapshots. Located under /libiberty. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35218

[Bug target/35222] [4.3 Regression] EH output contains procedure label without P' selector

2008-02-16 Thread danglin at gcc dot gnu dot org
--- Comment #1 from danglin at gcc dot gnu dot org 2008-02-16 23:37 --- Breakpoint 3, dw2_asm_output_encoded_addr_rtx (encoding=0, addr=0x7ab0fdd0, public=0 '\000', comment=0x5792c FDE initial location) at ../../gcc/gcc/dwarf2asm.c:841 841 if (encoding == DW_EH_PE_aligned)

[Bug libstdc++/35209] __gnu_cxx::stdio_sync_filebufchar constructor isn't exported by the DSO

2008-02-16 Thread paolo at gcc dot gnu dot org
--- Comment #4 from paolo at gcc dot gnu dot org 2008-02-16 23:40 --- Subject: Bug 35209 Author: paolo Date: Sat Feb 16 23:39:56 2008 New Revision: 132372 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=132372 Log: 2008-02-17 Paolo Carlini [EMAIL PROTECTED] PR

[Bug libstdc++/35209] __gnu_cxx::stdio_sync_filebufchar constructor isn't exported by the DSO

2008-02-16 Thread pcarlini at suse dot de
--- Comment #5 from pcarlini at suse dot de 2008-02-16 23:41 --- Fixed for 4.3.0. -- pcarlini at suse dot de changed: What|Removed |Added Status|ASSIGNED

[Bug fortran/35223] New: IBITS gives compiler error

2008-02-16 Thread phl at kth dot se
hades [TEST] cat bug-ibits.f90 program main write (*, *) ibits (-1, 0, bit_size (0)) end program main hades [TEST] gfortran bug-ibits.f90 bug-ibits.f90:2.22: write (*, *) ibits (-1, 0, bit_size (0)) 1 Error: Result of IBITS overflows its kind at (1) hades [TEST]

[Bug fortran/35223] IBITS gives compiler error

2008-02-16 Thread jvdelisle at verizon dot net
--- Comment #1 from jvdelisle at verizon dot net 2008-02-17 00:21 --- Subject: Re: New: IBITS gives compiler error phl at kth dot se wrote: hades [TEST] cat bug-ibits.f90 program main write (*, *) ibits (-1, 0, bit_size (0)) end program main hades [TEST] gfortran

[Bug target/35222] [4.3 Regression] EH output contains procedure label without P' selector

2008-02-16 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added CC||pinskia at gcc dot gnu dot |

[Bug fortran/35223] IBITS gives compiler error

2008-02-16 Thread kargl at gcc dot gnu dot org
--- Comment #2 from kargl at gcc dot gnu dot org 2008-02-17 01:08 --- (In reply to comment #0) hades [TEST] cat bug-ibits.f90 program main write (*, *) ibits (-1, 0, bit_size (0)) end program main (snip) What result do you expect? Compiling with g95 works fine though.

[Bug fortran/25829] [F2003] Asynchronous IO support

2008-02-16 Thread jvdelisle at gcc dot gnu dot org
--- Comment #2 from jvdelisle at gcc dot gnu dot org 2008-02-17 01:19 --- I will be working pn this and have a strat in my local experimental branch -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/35222] [4.3 Regression] EH output contains procedure label without P' selector

2008-02-16 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Comment #2 from dave at hiauly1 dot hia dot nrc dot ca 2008-02-17 03:29 --- Subject: Re: [4.3 Regression] EH output contains procedure label without P' selector The encoding seems wrong. Expected DW_EH_PE_aligned. Actually, the encoding is correct. The procedure label error

[Bug middle-end/35163] [4.1/4.2 Regression] folding comparison loses cast

2008-02-16 Thread pmarques at grupopie dot com
--- Comment #6 from pmarques at grupopie dot com 2008-02-17 03:58 --- Created an attachment (id=15171) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15171action=view) patch to fix testsuite breakage on 16 bit integer targets Unfortunately, the testcase assumes 32 bit integers and

[Bug fortran/30388] gfortran42 is slower than g77 3.4 about 10%

2008-02-16 Thread jvdelisle at gcc dot gnu dot org
--- Comment #14 from jvdelisle at gcc dot gnu dot org 2008-02-17 04:11 --- Two questions on this PR. Is there really anything on the gfortran side we can do to make this better or is it really a middle-end / back-end issue? Can we close this pr or change the component to other than

[Bug fortran/33268] read ('(f3.3)'), a rejected due to the extra (...)

2008-02-16 Thread jvdelisle at gcc dot gnu dot org
--- Comment #10 from jvdelisle at gcc dot gnu dot org 2008-02-17 04:44 --- I want to get this on my radar. -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/25829] [F2003] Asynchronous IO support

2008-02-16 Thread jvdelisle at gcc dot gnu dot org
--- Comment #3 from jvdelisle at gcc dot gnu dot org 2008-02-17 05:02 --- Keep this PR in mind while doing this. PR34705 -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/35223] IBITS gives compiler error

2008-02-16 Thread phl at kth dot se
--- Comment #3 from phl at kth dot se 2008-02-17 05:18 --- Subject: Re: IBITS gives compiler error --- Comment #2 from kargl at gcc dot gnu dot org 2008-02-17 01:08 --- (In reply to comment #0) hades [TEST] cat bug-ibits.f90 program main write (*, *) ibits (-1, 0,

[Bug fortran/35223] IBITS gives compiler error

2008-02-16 Thread kargl at gcc dot gnu dot org
--- Comment #4 from kargl at gcc dot gnu dot org 2008-02-17 06:38 --- (In reply to comment #3) Subject: Re: IBITS gives compiler error --- Comment #2 from kargl at gcc dot gnu dot org 2008-02-17 01:08 --- (In reply to comment #0) hades [TEST] cat bug-ibits.f90

[Bug tree-optimization/35224] New: scalar evolution analysis fails with evolution of base is not affine

2008-02-16 Thread irar at il dot ibm dot com
For the following scalar evolution analysis fails with evolution of base is not affine: for (i__ = 1; i__ = i__2; ++i__) { a[i__] = (b[i__] + b[im1] + b[im2]) * .333f; im2 = im1; im1 = i__; } -- Summary: scalar evolution analysis fails