[Bug c++/40333] g++ does not align static variables properly

2009-08-24 Thread dannysmith at users dot sourceforge dot net
--- Comment #3 from dannysmith at users dot sourceforge dot net 2009-08-24 06:15 --- (In reply to comment #2) (In reply to comment #0) The following SSE2 code crashes because the non-static global variable breaks the alignment of the static data section. Is this fixed if you

[Bug target/40786] Windows %I32 format confusion

2009-08-24 Thread ktietz at gcc dot gnu dot org
--- Comment #8 from ktietz at gcc dot gnu dot org 2009-08-24 06:20 --- Patch fixed for 4.5 at revision 151047. I would like to backport this patch to 4.4 and possibly to 4.3 branch, too? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40786

[Bug c/41151] New: Gas fails to consume the assembly Error: offset too big

2009-08-24 Thread raj dot khem at gmail dot com
When compiling the test program arm-none-linux-gnueabi-gcc -march=armv7-a -O2 -c -o ltest.o ltest.i Assembler fails to assemble it and emits the error Error: offset too big If I do not use -march=armv7-a it works ok and also if I dont use O2 it compiles fine. -- Summary: Gas

[Bug c/41151] Gas fails to consume the assembly Error: offset too big

2009-08-24 Thread raj dot khem at gmail dot com
--- Comment #1 from raj dot khem at gmail dot com 2009-08-24 06:24 --- Created an attachment (id=18417) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18417action=view) preprocessed testcase -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41151

[Bug c/41151] Gas fails to consume the assembly Error: offset too big

2009-08-24 Thread ramana at gcc dot gnu dot org
--- Comment #2 from ramana at gcc dot gnu dot org 2009-08-24 08:44 --- Using binutils trunk as well as r150986 I can't reproduce this with -O2 and -march=armv7-a. -- ramana at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/41152] New: Spurious diagnostic Extraneous characters in format

2009-08-24 Thread burnus at gcc dot gnu dot org
gfortran now warns for trailing characters in format statements. However, it does not properly work as the following test case (extracted from FLEUR, www.flapw.de) shows: 7182 FORMAT (a3) 1 Warning: Extraneous characters in format at (1) Due to committal: URL:

[Bug fortran/28039] Warn when ignoring extra characters in the format specification

2009-08-24 Thread burnus at gcc dot gnu dot org
--- Comment #5 from burnus at gcc dot gnu dot org 2009-08-24 08:53 --- Thanks for the fix, however, it causes some bogus diagnostic - see PR 41152 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28039

[Bug fortran/41152] Spurious diagnostic Extraneous characters in format

2009-08-24 Thread burnus at gcc dot gnu dot org
--- Comment #1 from burnus at gcc dot gnu dot org 2009-08-24 09:02 --- Also the following fixed-format format looks OK to me: WRITE (6,'(//'' icorr is not correctly transferred. icorr='',i5) ') 42 END But it produces: WRITE (6,'(//'' icorr is not

[Bug c/41150] segmentation fault after using __attribute__((optimize()))

2009-08-24 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2009-08-24 09:08 --- Please provide preprocessed source that can be used to reproduce the failure. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/41149] -fdump-tree-original and procedure pointer components

2009-08-24 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2009-08-24 09:21 --- Seems like by design, see tree-pretty-print.c:print_call_name Likely for printing prettier member function names. IMHO we should just drop this function on the floor considering it prints t.w (...) for struct

[Bug c++/41144] ice for legal code with -O2 in get_alias_set

2009-08-24 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2009-08-24 09:26 --- Reducing. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added CC|

[Bug c++/41094] Erroneous optimization of pow() with -ffast-math

2009-08-24 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2009-08-24 09:52 --- Subject: Bug 41094 Author: rguenth Date: Mon Aug 24 09:52:03 2009 New Revision: 151051 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151051 Log: 2009-08-24 Richard Guenther rguent...@suse.de PR

[Bug c++/41094] Erroneous optimization of pow() with -ffast-math

2009-08-24 Thread rguenth at gcc dot gnu dot org
--- Comment #5 from rguenth at gcc dot gnu dot org 2009-08-24 09:56 --- Subject: Bug 41094 Author: rguenth Date: Mon Aug 24 09:56:30 2009 New Revision: 151052 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151052 Log: 2009-08-24 Richard Guenther rguent...@suse.de PR

[Bug c++/41094] Erroneous optimization of pow() with -ffast-math

2009-08-24 Thread rguenth at gcc dot gnu dot org
--- Comment #6 from rguenth at gcc dot gnu dot org 2009-08-24 10:03 --- Fixed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug c++/41144] [4.5 Regression] ice for legal code with -O2 in get_alias_set

2009-08-24 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2009-08-24 10:29 --- Confirmed. Mine. struct rgba8; templateclass ColorT class span_gouraud { public: struct coord_type { }; coord_type m_coord[3]; }; templateclass ColorT class span_gouraud_rgba : public

[Bug fortran/41152] Spurious diagnostic Extraneous characters in format

2009-08-24 Thread janus at gcc dot gnu dot org
--- Comment #2 from janus at gcc dot gnu dot org 2009-08-24 11:19 --- Another test case: character(100), parameter :: subchapter='(79(-),/,5(-), ,A,/,79(-),/)' write(*,subchapter) 'test' end Here the error message is: write(*,subchapter) 'test'

[Bug fortran/41152] Spurious diagnostic Extraneous characters in format

2009-08-24 Thread janus at gcc dot gnu dot org
--- Comment #3 from janus at gcc dot gnu dot org 2009-08-24 11:24 --- (In reply to comment #0) Due to committal: URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151021 For me r151028 seems to work, but r151039 shows the error. --

[Bug c++/41153] New: ICE in building Qt4 src/core

2009-08-24 Thread t66667 at gmail dot com
tools/qdatetime.cpp: In member function 'QString QDateTimeParser::sectionText(const QString, int, int) const': tools/qdatetime.cpp:4424: warning: case label value is less than minimum value for type tools/qdatetime.cpp:4425: warning: case label value is less than minimum value for type

[Bug fortran/41053] internal compiler error: in emit_swap_insn, at reg-stack.c:827

2009-08-24 Thread dominiq at lps dot ens dot fr
--- Comment #6 from dominiq at lps dot ens dot fr 2009-08-24 11:48 --- I just downloaded CPMD and built it under gfortran 4.4.1 and 4.5.0 (revision 151047) without trouble. Could you post the output of gfortran -v and indicate your platform. --

[Bug fortran/41154] New: [4.5 Regression] Comma required after P descriptor

2009-08-24 Thread janus at gcc dot gnu dot org
With r151053 I get an error when I compile the following line: 2000 format (1X,1P,E14.6,3E12.4,0P) 1 Error: Comma required after P descriptor in format string at (1) While I haven't checked in the standard if this is really valid, it was swallowed by gfortran

[Bug fortran/41053] internal compiler error: in emit_swap_insn, at reg-stack.c:827

2009-08-24 Thread ubizjak at gmail dot com
--- Comment #7 from ubizjak at gmail dot com 2009-08-24 12:40 --- Probably duplicate of PR 40587. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41053

[Bug c++/41144] [4.5 Regression] ice for legal code with -O2 in get_alias_set

2009-08-24 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2009-08-24 12:53 --- We're layouting an array with incomplete element type and get into if (!TYPE_SIZE (element)) /* We don't know the size of the underlying element type, so our alignment calculations

[Bug fortran/41053] internal compiler error: in emit_swap_insn, at reg-stack.c:827

2009-08-24 Thread dominiq at lps dot ens dot fr
--- Comment #8 from dominiq at lps dot ens dot fr 2009-08-24 13:03 --- Probably duplicate of PR 40587. Could be, but the test in PR 40587 fails with 4.5 r147438: pr40587.f90: In function 'test': pr40587.f90:14: internal compiler error: in emit_swap_insn, at reg-stack.c:827 but not

[Bug tree-optimization/40585] [4.5 Regression] tracer duplicates blocks w/o adjusting EH tree

2009-08-24 Thread rguenth at gcc dot gnu dot org
--- Comment #11 from rguenth at gcc dot gnu dot org 2009-08-24 13:12 --- Fixed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/41154] [4.5 Regression] Comma required after P descriptor

2009-08-24 Thread burnus at gcc dot gnu dot org
--- Comment #1 from burnus at gcc dot gnu dot org 2009-08-24 13:45 --- With r151053 I get an error when I compile the following line: 2000 format (1X,1P,E14.6,3E12.4,0P) 1 Error: Comma required after P descriptor in format string at (1) That looks

[Bug fortran/41154] [4.5 Regression] Comma required after P descriptor

2009-08-24 Thread janus at gcc dot gnu dot org
--- Comment #2 from janus at gcc dot gnu dot org 2009-08-24 13:55 --- However, I cannot reproduce the problem with a program consisting only of: 2000 format (1X,1P,E14.6,3E12.4,0P) end Hm, funny. For me the error *does* appear already for this two-liner (at r151053). --

[Bug middle-end/30789] complex folding inexact

2009-08-24 Thread ghazi at gcc dot gnu dot org
--- Comment #7 from ghazi at gcc dot gnu dot org 2009-08-24 14:43 --- Joseph - back in comment#2, you noted that the results of infinity and zero can be ambiguous. I.e. Infinity in either part of a complex number (perhaps infinity of either sign?) is sufficient, and a pair of zeros,

[Bug c/41155] New: Compiler internal error with -O3

2009-08-24 Thread David dot Kosower at cea dot fr
gcc -v says Using built-in specs. Target: i486-linux-gnu Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls

[Bug c/41155] Compiler internal error with -O3

2009-08-24 Thread David dot Kosower at cea dot fr
--- Comment #1 from David dot Kosower at cea dot fr 2009-08-24 15:25 --- Created an attachment (id=18418) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18418action=view) File referred to in comment -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41155

[Bug lto/41079] Bootstrap comparison fails, collect2 links against lto archives

2009-08-24 Thread rguenth at gcc dot gnu dot org
--- Comment #6 from rguenth at gcc dot gnu dot org 2009-08-24 15:33 --- Subject: Bug 41079 Author: rguenth Date: Mon Aug 24 15:33:35 2009 New Revision: 151057 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151057 Log: 2009-08-24 Richard Guenther rguent...@suse.de PR

[Bug lto/41079] Bootstrap comparison fails, collect2 links against lto archives

2009-08-24 Thread rguenth at gcc dot gnu dot org
--- Comment #7 from rguenth at gcc dot gnu dot org 2009-08-24 15:34 --- The bootstrap comparison issues have all been fixed. The lto sections appearing in the final executables have been dealt with in upstream ld following what gold does. Thus, fixed. -- rguenth at gcc dot gnu dot

[Bug c/41155] Compiler internal error with -O3

2009-08-24 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2009-08-24 15:40 --- GCC 4.2.4 is no longer maintained, please update to at least GCC 4.3.4. I suggest reporting this bug to ubuntu instead. -- rguenth at gcc dot gnu dot org changed: What|Removed

[Bug middle-end/40867] [4.5 Regression] FAIL: StackTrace2 output - source compiled test

2009-08-24 Thread hjl dot tools at gmail dot com
--- Comment #9 from hjl dot tools at gmail dot com 2009-08-24 15:48 --- Fixed: http://gcc.gnu.org/ml/gcc-testresults/2009-08/msg02467.html -- hjl dot tools at gmail dot com changed: What|Removed |Added

[Bug target/41156] New: [4.4/4.5 Regression] zlib segfault in inflate_table() compiled w/ -O -msse2 ftree-vectorize

2009-08-24 Thread hjl dot tools at gmail dot com
+++ This bug was initially created as a clone of Bug #32893 +++ Gcc 4.4/4.5 can align stack properly. But it needs to assume 4 byte incoming stack alignment instead of 16byte. -- Summary: [4.4/4.5 Regression] zlib segfault in inflate_table() compiled w/ -O -msse2

[Bug middle-end/40500] [4.5 Regression] Revision 148512 failed to build binutils

2009-08-24 Thread mmitchel at gcc dot gnu dot org
--- Comment #9 from mmitchel at gcc dot gnu dot org 2009-08-24 16:10 --- I think maybe it's time for me to get a brain transplant. I had totally forgotten the previous conversation, and read through this entire issue yesterday, and then spent some time thinking about the issue, and

[Bug target/34736] [avr] optimiser does not keep interrupt disabled blocks small

2009-08-24 Thread eric dot weddington at atmel dot com
--- Comment #4 from eric dot weddington at atmel dot com 2009-08-24 17:07 --- The cli() and sei() macros from avr-libc are volatile and generate inline assembly, which the compiler knows nothing about. The compiler is not aware that the load of the constant into a register can be done,

[Bug target/29560] [avr] Poor optimization for byte shifts

2009-08-24 Thread eric dot weddington at atmel dot com
--- Comment #3 from eric dot weddington at atmel dot com 2009-08-24 17:18 --- Confirmed on 4.3.2. -- eric dot weddington at atmel dot com changed: What|Removed |Added

[Bug libfortran/41157] dtime not consistent in times reported

2009-08-24 Thread kargl at gcc dot gnu dot org
--- Comment #1 from kargl at gcc dot gnu dot org 2009-08-24 17:19 --- (In reply to comment #0) The following code was compiled with gfortran -g -o test_dtime test_dtime.f The code is given by (very similar to that given in the info file for gfortran program test_dtime

[Bug libfortran/41157] dtime not consistent in times reported

2009-08-24 Thread fkrogh#gcc at mathalacarte dot com
--- Comment #2 from fkrogh#gcc at mathalacarte dot com 2009-08-24 17:34 --- I had thought that was the case as well. But when I started getting some negative times by subtracting the previous value from the current one in the first location of the array I looked at the info file and

[Bug libfortran/41157] dtime not consistent in times reported

2009-08-24 Thread dominiq at lps dot ens dot fr
--- Comment #3 from dominiq at lps dot ens dot fr 2009-08-24 17:45 --- dtime returns the time since the start of the process? The manual says: Subsequent invocations of DTIME return values accumulated since the previous invocation. --

[Bug c++/41158] New: segfault while using PCH

2009-08-24 Thread lhommev at gmail dot com
Just trying PCH with a sample GTKmm application. The PCH is generated with first g++ call but the compilers crashes at the second call. Files and versions on the archive. Sorry to use achives. How to reproduce: § tar -xjf gcc_segfault_case.tar.bz2 § make Well, i don't know how to post the

[Bug c++/41158] segfault while using PCH

2009-08-24 Thread paolo dot carlini at oracle dot com
--- Comment #1 from paolo dot carlini at oracle dot com 2009-08-24 17:54 --- Please provide all the information outlined here: http://gcc.gnu.org/bugs.html -- paolo dot carlini at oracle dot com changed: What|Removed |Added

[Bug libfortran/41157] dtime not consistent in times reported

2009-08-24 Thread dominiq at lps dot ens dot fr
--- Comment #4 from dominiq at lps dot ens dot fr 2009-08-24 18:16 --- If I am not mistaken, the dtime behavior change between 4.2 and 4.3. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41157

[Bug debug/40660] [4.5 Regression] Weird break points with 4.5, works with 4.4

2009-08-24 Thread jv244 at cam dot ac dot uk
--- Comment #10 from jv244 at cam dot ac dot uk 2009-08-24 19:05 --- (In reply to comment #8) (Part of PR 40823 is probably a duplicate of this issue; there is another issue stated in that PR, which is not a regression (i.e. never worked correctly), but has probably a similar

[Bug debug/40823] debug info points to unexpected line

2009-08-24 Thread jv244 at cam dot ac dot uk
--- Comment #1 from jv244 at cam dot ac dot uk 2009-08-24 19:06 --- No obvious wrong line numbers in the '-fdump-tree-original-lineno' output for the module: s1 (integer(kind=4)[0:D.1561] * restrict a, integer(kind=4) restrict n) { integer(kind=8) ubound.0; integer(kind=8)

[Bug lto/41159] New: [LTO] ICE in insert_value_copy_on_edge, at tree-outof-ssa.c:225

2009-08-24 Thread rmansfield at qnx dot com
4.5.0 20090824 (experimental) [lto revision 151057] (lto merged with rev 150842) $ ./xgcc -B. -c -O -fpic ~/ice.i -flto $ ./xgcc -B. -flto ice.o -shared In file included from :0:0: /home/ryan/ice.i: In function 'acos': /home/ryan/ice.i:660:9: internal compiler error: in insert_value_copy_on_edge

[Bug fortran/40632] Support F2008's contiguous attribute

2009-08-24 Thread tkoenig at gcc dot gnu dot org
--- Comment #1 from tkoenig at gcc dot gnu dot org 2009-08-24 19:33 --- It would also be useful when assigning arrays with a single value: subroutine foo(a) integer, a(:,:) :: a a = 0 ! See PR 41137, we could use memset or subroutine foo(a) integer, a(:,:) :: a A = 42 --

[Bug lto/41159] [LTO] ICE in insert_value_copy_on_edge, at tree-outof-ssa.c:225

2009-08-24 Thread rmansfield at qnx dot com
--- Comment #1 from rmansfield at qnx dot com 2009-08-24 19:34 --- Created an attachment (id=18419) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18419action=view) preprocessed source -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41159

[Bug libfortran/41157] dtime not consistent in times reported

2009-08-24 Thread kargl at gcc dot gnu dot org
--- Comment #5 from kargl at gcc dot gnu dot org 2009-08-24 19:40 --- Confirmed. I have a patch. -- kargl at gcc dot gnu dot org changed: What|Removed |Added

[Bug libfortran/41157] dtime not consistent in times reported

2009-08-24 Thread kargl at gcc dot gnu dot org
-- kargl at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |kargl at gcc dot gnu dot org |dot org

[Bug middle-end/41149] -fdump-tree-original and procedure pointer components

2009-08-24 Thread janus at gcc dot gnu dot org
--- Comment #2 from janus at gcc dot gnu dot org 2009-08-24 19:44 --- (In reply to comment #1) Seems like by design, see tree-pretty-print.c:print_call_name Thanks for pointing me at the right place. Likely for printing prettier member function names. IMHO we should just drop

[Bug c++/41110] [4.5 regression] Wrong unused variable warning

2009-08-24 Thread jason at gcc dot gnu dot org
--- Comment #3 from jason at gcc dot gnu dot org 2009-08-24 21:32 --- Subject: Bug 41110 Author: jason Date: Mon Aug 24 21:31:54 2009 New Revision: 151061 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151061 Log: PR c++/41109 PR c++/41110 PR c++/41134

[Bug c++/41134] [4.5 regression] Variable flagged unused if only used in template function

2009-08-24 Thread jason at gcc dot gnu dot org
--- Comment #8 from jason at gcc dot gnu dot org 2009-08-24 21:32 --- Subject: Bug 41134 Author: jason Date: Mon Aug 24 21:31:54 2009 New Revision: 151061 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151061 Log: PR c++/41109 PR c++/41110 PR c++/41134

[Bug c++/41109] [4.5 regression] Argument flagged as unused despite use in sizeof()

2009-08-24 Thread jason at gcc dot gnu dot org
--- Comment #4 from jason at gcc dot gnu dot org 2009-08-24 21:32 --- Subject: Bug 41109 Author: jason Date: Mon Aug 24 21:31:54 2009 New Revision: 151061 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151061 Log: PR c++/41109 PR c++/41110 PR c++/41134

[Bug debug/41130] GCC should emit an index of publicly named entities

2009-08-24 Thread dodji at gcc dot gnu dot org
--- Comment #2 from dodji at gcc dot gnu dot org 2009-08-24 21:40 --- Created an attachment (id=18420) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18420action=view) WIP with test This version fixes a bug in gcc that was preventing it to emit DWARFs for a typedefs enclosed in a

[Bug debug/41130] GCC should emit an index of publicly named entities

2009-08-24 Thread dodji at gcc dot gnu dot org
--- Comment #3 from dodji at gcc dot gnu dot org 2009-08-24 21:42 --- Created an attachment (id=18421) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18421action=view) Generated assembly for previous test Assembly generated for the test in attachment #18420 --

[Bug fortran/37826] gfortran compiled with -gstabs+ on OSX emits incorrect debug information if compiled with -finit-local-zero

2009-08-24 Thread steven at gcc dot gnu dot org
--- Comment #5 from steven at gcc dot gnu dot org 2009-08-24 22:35 --- IMHO we should just not put a locus on the generated code to zero out the variable at the start of the (sub-)program. -- steven at gcc dot gnu dot org changed: What|Removed

[Bug target/36223] IV-opt is not optimal for mips

2009-08-24 Thread sandra at codesourcery dot com
--- Comment #6 from sandra at codesourcery dot com 2009-08-24 22:36 --- This bug appears to be fixed in mainline HEAD now. Here's an excerpt showing the generated code for the inner loop in the example program now: addiu $21,$28,%gp_rel(AA) addiu $10,$28,%gp_rel(A)

[Bug fortran/41154] [4.5 Regression] Comma required after P descriptor

2009-08-24 Thread jvdelisle at verizon dot net
--- Comment #3 from jvdelisle at verizon dot net 2009-08-24 23:45 --- Subject: Re: New: [4.5 Regression] Comma required after P descriptor On 08/24/2009 05:26 AM, janus at gcc dot gnu dot org wrote: With r151053 I get an error when I compile the following line: 2000 format

[Bug debug/40660] [4.5 Regression] Weird break points with 4.5, works with 4.4

2009-08-24 Thread aldyh at gcc dot gnu dot org
--- Comment #11 from aldyh at gcc dot gnu dot org 2009-08-25 00:28 --- Subject: Bug 40660 Author: aldyh Date: Tue Aug 25 00:27:52 2009 New Revision: 151069 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151069 Log: fortran/ PR fortran/40660 * trans-io.c

[Bug fortran/41160] No more than one complex function in a file

2009-08-24 Thread kargl at gcc dot gnu dot org
--- Comment #1 from kargl at gcc dot gnu dot org 2009-08-25 00:36 --- There isn't a problem with having more than 2 complex function in a file. The problem is that your complex functions are using a nonstandard extension. REMOVE:kargl[242] cat k.f90 COMPLEX FUNCTION

[Bug target/36223] IV-opt is not optimal for mips

2009-08-24 Thread ebotcazou at gcc dot gnu dot org
--- Comment #7 from ebotcazou at gcc dot gnu dot org 2009-08-25 00:37 --- I tweaked IVOPTS a few months ago to help in similar cases on PowerPC: 2009-05-29 Eric Botcazou ebotca...@adacore.com * tree-ssa-loop-ivopts.c (strip_offset_1) MULT_EXPR: New case.

[Bug fortran/41160] No more than one complex function in a file

2009-08-24 Thread kargl at gcc dot gnu dot org
--- Comment #2 from kargl at gcc dot gnu dot org 2009-08-25 00:40 --- OK. I found it. This is probably a duplicate of PR 36234 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41160

[Bug fortran/41154] [4.5 Regression] Comma required after P descriptor

2009-08-24 Thread jvdelisle at gcc dot gnu dot org
--- Comment #4 from jvdelisle at gcc dot gnu dot org 2009-08-25 01:03 --- Patch is simple and obvious. I will commit shortly. Index: io.c === --- io.c(revision 151045) +++ io.c(working copy) @@ -694,7

[Bug fortran/41154] [4.5 Regression] Comma required after P descriptor

2009-08-24 Thread jvdelisle at gcc dot gnu dot org
--- Comment #5 from jvdelisle at gcc dot gnu dot org 2009-08-25 01:05 --- Subject: Bug 41154 Author: jvdelisle Date: Tue Aug 25 01:05:11 2009 New Revision: 151070 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151070 Log: 2009-08-24 Jerry DeLisle jvdeli...@gcc.gnu.org

[Bug fortran/41154] [4.5 Regression] Comma required after P descriptor

2009-08-24 Thread jvdelisle at gcc dot gnu dot org
--- Comment #6 from jvdelisle at gcc dot gnu dot org 2009-08-25 01:14 --- Subject: Bug 41154 Author: jvdelisle Date: Tue Aug 25 01:14:13 2009 New Revision: 151071 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151071 Log: 2009-08-24 Jerry DeLisle jvdeli...@gcc.gnu.org

[Bug c++/41161] New: Hello World in C++ ISO does NOT compile

2009-08-24 Thread juliorz at bellsouth dot net
The following program which conforms to C++ ISO does NOT compile with G++ but compiles with no errors using Borland C++ 5.52 command line compiler. #include iostream int main() { std::cout Hello World! std::endl; } The following errors are produced: ju...@linux-wp1w:~ g++ hello_iso.cpp

[Bug fortran/41154] [4.5 Regression] Comma required after P descriptor

2009-08-24 Thread jvdelisle at gcc dot gnu dot org
--- Comment #7 from jvdelisle at gcc dot gnu dot org 2009-08-25 01:21 --- Closing. By all means let me know if anything else crops up. Thanks for catching this. -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/35754] -std=f95: Reject 1P2E12.4 w/o a comma after the P

2009-08-24 Thread jvdelisle at gcc dot gnu dot org
--- Comment #3 from jvdelisle at gcc dot gnu dot org 2009-08-25 01:22 --- Closing, fixed on trunk. -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/37446] Diagnostic of edit descriptors, esp. EN

2009-08-24 Thread jvdelisle at gcc dot gnu dot org
--- Comment #4 from jvdelisle at gcc dot gnu dot org 2009-08-25 01:24 --- Closing, fixed on trunk. Note to self. Have some locus clean-ups to do relative to 38439. Will pick those off next. -- jvdelisle at gcc dot gnu dot org changed: What|Removed

[Bug libfortran/41157] dtime not consistent in times reported

2009-08-24 Thread kargl at gcc dot gnu dot org
--- Comment #7 from kargl at gcc dot gnu dot org 2009-08-25 01:47 --- Subject: Bug 41157 Author: kargl Date: Tue Aug 25 01:47:23 2009 New Revision: 151072 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151072 Log: 2009-08-24 Steven G. Kargl ka...@gcc.gnu.org PR

[Bug fortran/41152] [4.5 Regression] Spurious diagnostic Extraneous characters in format

2009-08-24 Thread bdavis at gcc dot gnu dot org
-- bdavis at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |bdavis at gcc dot gnu dot |dot org

[Bug fortran/41160] No more than one complex function in a file

2009-08-24 Thread kargl at gcc dot gnu dot org
--- Comment #5 from kargl at gcc dot gnu dot org 2009-08-25 02:28 --- (In reply to comment #4) This turns out to be the exact bug that Diego reported in his recent email. He sent me the code off list. g77 compiles it fine. gfortran does this: Obviously legacy code issue. I

[Bug libfortran/41157] dtime not consistent in times reported

2009-08-24 Thread kargl at gcc dot gnu dot org
--- Comment #8 from kargl at gcc dot gnu dot org 2009-08-25 03:30 --- Subject: Bug 41157 Author: kargl Date: Tue Aug 25 03:30:25 2009 New Revision: 151073 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151073 Log: 2009-08-24 Steven G. Kargl ka...@gcc.gnu.org PR

[Bug libfortran/41157] dtime not consistent in times reported

2009-08-24 Thread kargl at gcc dot gnu dot org
--- Comment #9 from kargl at gcc dot gnu dot org 2009-08-25 03:33 --- Fixed on trunk and 4.4. Thanks for the bug report. -- kargl at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/41161] Hello World in C++ ISO does NOT compile

2009-08-24 Thread bangerth at gmail dot com
--- Comment #1 from bangerth at gmail dot com 2009-08-25 04:12 --- It looks like your terminating double quote is not the same as the opening one. How are they encoded on your system? -- bangerth at gmail dot com changed: What|Removed |Added

[Bug c++/41073] Array of iostreams

2009-08-24 Thread bangerth at gmail dot com
--- Comment #1 from bangerth at gmail dot com 2009-08-25 04:21 --- This is the way C++ works. The copy constructor must be available. (The compiler doesn't have to actually call it, but it must be available.) -- bangerth at gmail dot com changed: What|Removed

[Bug c++/41054] Cryptic error message when type is not defined.

2009-08-24 Thread bangerth at gmail dot com
--- Comment #1 from bangerth at gmail dot com 2009-08-25 04:23 --- Yes. -- bangerth at gmail dot com changed: What|Removed |Added CC|

[Bug c++/41038] [4.4/4.5 regression] Parsing error related to qualified name id

2009-08-24 Thread bangerth at gmail dot com
-- bangerth at gmail dot com changed: What|Removed |Added CC||bangerth at gmail dot com Status|UNCONFIRMED

[Bug fortran/41162] [4.5 Regression] 416.gamess in SPEC CPU 2006 failed to build

2009-08-24 Thread hjl dot tools at gmail dot com
--- Comment #1 from hjl dot tools at gmail dot com 2009-08-25 04:40 --- The complete error is chgpen.fppized.f:2107.56: * 1X,'INITIAL VALUE OF CHISQ =',1P,E17.10,0P/ 1 Error: Comma required after P descriptor in format

[Bug fortran/41162] [4.5 Regression] 416.gamess in SPEC CPU 2006 failed to build

2009-08-24 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2009-08-25 04:45 --- This is most likely a dup of bug 41154. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41162

[Bug fortran/41162] [4.5 Regression] 416.gamess in SPEC CPU 2006 failed to build

2009-08-24 Thread jvdelisle at gcc dot gnu dot org
--- Comment #4 from jvdelisle at gcc dot gnu dot org 2009-08-25 05:22 --- Subject: Bug 41162 Author: jvdelisle Date: Tue Aug 25 05:22:14 2009 New Revision: 151074 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=151074 Log: 2009-08-24 Jerry DeLisle jvdeli...@gcc.gnu.org

[Bug fortran/41162] [4.5 Regression] 416.gamess in SPEC CPU 2006 failed to build

2009-08-24 Thread jvdelisle at gcc dot gnu dot org
--- Comment #5 from jvdelisle at gcc dot gnu dot org 2009-08-25 05:24 --- Fixed. I will leave this open for a bit. At the rate I am going I will break everything by midnight. (zzz) -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added