[Bug target/35921] Con/de-structor definition fails to override dllimport declaration

2008-04-12 Thread aaronavay62 at aaronwl dot com
--- Comment #2 from aaronavay62 at aaronwl dot com 2008-04-13 01:46 --- Note at present, implicit inline within the class definition will work; it's only out-of-line that fails. Also, if we fix this bug in the suggested way, we need to change the documentation to state that the 'inline'

[Bug target/35860] [4.3 Regression] [avr] code bloat caused by -fsplit-wide-types

2008-04-12 Thread hutchinsonandy at gcc dot gnu dot org
--- Comment #5 from hutchinsonandy at gcc dot gnu dot org 2008-04-13 00:33 --- This bug has to do with reload and additional register conflicts introduced by register lowering. In the smaller case, the register for 'a' is a call used register (often r22..r25). The avr backend code perf

[Bug fortran/35916] problem running gfortran 4.4.0 in Vista

2008-04-12 Thread brian at dessent dot net
--- Comment #2 from brian at dessent dot net 2008-04-13 00:06 --- Subject: Re: problem running gfortran 4.4.0 in Vista pinskia at gcc dot gnu dot org wrote: > IIRC the driver does not relocate correctly under Vista. The Vista shell seems to populate argv[0] differently than previous

[Bug ada/35687] [4.4 Regression] gnatmake: "/test/gnu/gcc/gcc-svn/gcc/ada/gnatchop.adb" compilation error

2008-04-12 Thread danglin at gcc dot gnu dot org
--- Comment #3 from danglin at gcc dot gnu dot org 2008-04-12 23:26 --- This bug is probably a duplicate of PR middle-end/35838. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35687

[Bug target/35921] Con/de-structor definition fails to override dllimport declaration

2008-04-12 Thread tdragon at tdragon dot net
--- Comment #1 from tdragon at tdragon dot net 2008-04-12 22:45 --- Created an attachment (id=15469) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=15469&action=view) Minimal testcase -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35921

[Bug middle-end/35838] [4.4 Regression] FAIL: 22_locale/num_get/get/char/16.cc execution test, and 76 others

2008-04-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Component|c++ |middle-end Keywords||wrong-code

[Bug c++/35838] FAIL: 22_locale/num_get/get/char/16.cc execution test, and 76 others

2008-04-12 Thread danglin at gcc dot gnu dot org
--- Comment #3 from danglin at gcc dot gnu dot org 2008-04-12 22:22 --- The files locale-inst.o and wlocale-inst.o differ in size before and after the change. The first significant difference in code is here: @@ -19075,7 +19075,7 @@ _ZNKSt8time_putIcSt19ostreambuf_iterator stw

[Bug target/35921] New: Con/de-structor definition fails to override dllimport declaration

2008-04-12 Thread tdragon at tdragon dot net
When the attached file is compiled with a mingw32 build of GCC 4.3.0, the constructor definition for "foo" does not fully override the declaration in the struct which inherits the dllimport attribute, and a dllimport reference is incorrectly emitted. The member function "bar()" is provided as an ex

[Bug c++/35909] [4.4 Regression] ICE with bit-field and const references

2008-04-12 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2008-04-12 22:03 --- Reduced testcase: struct MidiCommand { unsigned data1 : 8; }; void g(const unsigned char &); void f(MidiCommand mc) { g(mc.data1); } - CUT --- And I was wrong, it is not related to that PR. -- pinskia at

[Bug ada/35825] Update g-soccon-rtems.ads

2008-04-12 Thread sam at gcc dot gnu dot org
--- Comment #3 from sam at gcc dot gnu dot org 2008-04-12 21:56 --- Patch committed. -- sam at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFI

[Bug ada/35825] Update g-soccon-rtems.ads

2008-04-12 Thread sam at gcc dot gnu dot org
--- Comment #2 from sam at gcc dot gnu dot org 2008-04-12 21:56 --- Subject: Bug 35825 Author: sam Date: Sat Apr 12 21:55:35 2008 New Revision: 134230 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=134230 Log: 2008-04-12 Joel Sherrill <[EMAIL PROTECTED]> gcc/ada/

[Bug ada/35920] New: Overriding primitive with a predefined operation renaming

2008-04-12 Thread sam at gcc dot gnu dot org
GNAT 4.4.0 (20080411) crashes when trying to override an inherited primitive operation by the renaming of a predefined one. package P1 is type T1 is tagged null record; function Something (X, Y : T1) return Boolean; type T2 is new T1 with null record; function Something (X, Y : T2) ret

[Bug ada/35919] New: Primitive renaming a predefined operation

2008-04-12 Thread sam at gcc dot gnu dot org
The following code tries to reference an intrinsic subprogram in SVN trunk and makes GNAT crash in the 4.3.x series: package P1 is type T1 is tagged null record; function Something (X, Y : T1) return Boolean renames "="; end P1; GCC 4.4.0 (20080411) % gcc -c p1.ads p1.ads:2:09: prefix of "U

[Bug c++/28239] [4.2 regression] ICE in gimple_add_tmp_var, at gimplify.c:720

2008-04-12 Thread reichelt at gcc dot gnu dot org
--- Comment #7 from reichelt at gcc dot gnu dot org 2008-04-12 20:47 --- Fixed on mainline and 4.3 branch. Probably by the patch for PR35708. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added -

[Bug fortran/35918] New: Accepts invalid: INTERFACE and REAL

2008-04-12 Thread burnus at gcc dot gnu dot org
>From the same thread as PR 35913. Found at http://groups.google.com/group/comp.lang.fortran/browse_thread/thread/8bc064b25f12ed91 The following should be rejected: implicit none real foo interface subroutine foo() end subroutine foo end interface end Adding "call foo()" shows that the gfort

[Bug ada/30614] compiler puts the blame on in parameter mode, not pointer to constant, for assignment to component

2008-04-12 Thread sam at gcc dot gnu dot org
--- Comment #1 from sam at gcc dot gnu dot org 2008-04-12 20:05 --- Confirmed on 4.4.0 trunk. Fix in progress. -- sam at gcc dot gnu dot org changed: What|Removed |Added

[Bug other/35151] Combine mingw names

2008-04-12 Thread nightstrike at gmail dot com
--- Comment #4 from nightstrike at gmail dot com 2008-04-12 19:37 --- I made the title more appropriate. Also, I think this has now been fixed, so should the status be changed to Resolved - Fixed? -- nightstrike at gmail dot com changed: What|Removed

[Bug libstdc++/35914] missing int std::abs(int)

2008-04-12 Thread pcarlini at suse dot de
--- Comment #1 from pcarlini at suse dot de 2008-04-12 19:29 --- You want to include : only provides overloads for floating point types (see 26.5 for details). -- pcarlini at suse dot de changed: What|Removed |Added ---

[Bug ada/30560] gnatchop behaves differently dependend on argv[0] -- make check-ada fails

2008-04-12 Thread sam at gcc dot gnu dot org
--- Comment #3 from sam at gcc dot gnu dot org 2008-04-12 19:27 --- Bug fixed but not closed. Closing it. -- sam at gcc dot gnu dot org changed: What|Removed |Added

[Bug ada/35687] [4.4 Regression] gnatmake: "/test/gnu/gcc/gcc-svn/gcc/ada/gnatchop.adb" compilation error

2008-04-12 Thread danglin at gcc dot gnu dot org
--- Comment #2 from danglin at gcc dot gnu dot org 2008-04-12 19:13 --- GNATMAKE 4.4.0 20080411 (experimental) [trunk revision 134209] Copyright (C) 1995-2008, Free Software Foundation, Inc. "gnatchop.ali" being checked ... -> "gnatchop.ali" missing. ../../xgcc -c -I./ -I../rts -I.

[Bug ada/35917] [4.4 Regression] s-linux.ads:106:41: "int" is not visible

2008-04-12 Thread charlet at gcc dot gnu dot org
--- Comment #2 from charlet at gcc dot gnu dot org 2008-04-12 19:10 --- Should now be fixed, let me know if not. -- charlet at gcc dot gnu dot org changed: What|Removed |Added

[Bug ada/35917] [4.4 Regression] s-linux.ads:106:41: "int" is not visible

2008-04-12 Thread charlet at gcc dot gnu dot org
--- Comment #1 from charlet at gcc dot gnu dot org 2008-04-12 19:09 --- Subject: Bug 35917 Author: charlet Date: Sat Apr 12 19:08:18 2008 New Revision: 134226 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=134226 Log: PR ada/35917 * s-linux-hppa.ads: Fix syntax errors.

[Bug ada/35917] New: [4.4 Regression] s-linux.ads:106:41: "int" is not visible

2008-04-12 Thread danglin at gcc dot gnu dot org
/home/dave/gnu/gcc/objdir/./gcc/xgcc -B/home/dave/gnu/gcc/objdir/./gcc/ -B/home/dave/opt/gnu/gcc/gcc-4.4.0/hppa-linux/bin/ -B/home/dave/opt/gnu/gcc/gcc-4.4.0/hppa-linux/lib/ -isystem /home/dave/opt/gnu/gcc/gcc-4.4.0/hppa-linux/include -isys tem /home/dave/opt/gnu/gcc/gcc-4.4.0/hppa-linux/sys-includ

[Bug fortran/35916] problem running gfortran 4.4.0 in Vista

2008-04-12 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2008-04-12 18:08 --- IIRC the driver does not relocate correctly under Vista. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/35916] New: problem running gfortran 4.4.0 in Vista

2008-04-12 Thread DHConsultancy at skynet dot be
I wanted to upgrade (Windows Vista) from 4.3.0 (20071017) to the latest stable 4.3.x The Windows installer apparently is for 4.4.0. After installing it, I get the following error when compiling a simple program that worked fine under 4.3.0: gfortran: CreateProcess: No such file or directory Do yo

[Bug libstdc++/35915] New: [4.4 Regression] atomic.cc:31:20: error: stdint.h: No such file

2008-04-12 Thread danglin at gcc dot gnu dot org
libtool: compile: /test/gnu/gcc/objdir/./gcc/xgcc -shared-libgcc -B/test/gnu/gc c/objdir/./gcc -nostdinc++ -L/test/gnu/gcc/objdir/hppa2.0w-hp-hpux11.11/libstdc+ +-v3/src -L/test/gnu/gcc/objdir/hppa2.0w-hp-hpux11.11/libstdc++-v3/src/.libs -B/ opt/gnu/gcc/gcc-4.4.0/hppa2.0w-hp-hpux11.11/bin/ -B/opt/

[Bug target/35695] [4.3 Regression] -funroll-loops breaks inline float divide

2008-04-12 Thread wilson at gcc dot gnu dot org
--- Comment #9 from wilson at gcc dot gnu dot org 2008-04-12 16:48 --- Subject: Bug 35695 Author: wilson Date: Sat Apr 12 16:47:55 2008 New Revision: 134222 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=134222 Log: PR target/35695 * config/ia64/div.md (recip_approx_rf): Use UNS

[Bug ada/24880] [4.1/4.2/4.3/4.4 regression] Conversion of user-defined integer type with Size fixed causes crashes

2008-04-12 Thread sam at gcc dot gnu dot org
--- Comment #6 from sam at gcc dot gnu dot org 2008-04-12 16:25 --- *** Bug 29320 has been marked as a duplicate of this bug. *** -- sam at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug ada/29320] [Ada] gnat1 segfault related to "use" representation clauses

2008-04-12 Thread sam at gcc dot gnu dot org
--- Comment #2 from sam at gcc dot gnu dot org 2008-04-12 16:25 --- Looks like it may be similar to bug #24880. *** This bug has been marked as a duplicate of 24880 *** -- sam at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug ada/24880] [4.1/4.2/4.3/4.4 regression] Conversion of user-defined integer type with Size fixed causes crashes

2008-04-12 Thread ebotcazou at gcc dot gnu dot org
--- Comment #5 from ebotcazou at gcc dot gnu dot org 2008-04-12 16:06 --- Known problem, investigating. -- ebotcazou at gcc dot gnu dot org changed: What|Removed |Added

[Bug testsuite/34880] gcc.c-torture/execute/float-floor.c fails for targets with no 64-bit double type

2008-04-12 Thread hutchinsonandy at gcc dot gnu dot org
--- Comment #3 from hutchinsonandy at gcc dot gnu dot org 2008-04-12 15:51 --- Confirmed on 4.3 - its always been bad. Patch will need to be posted. But it works. -- hutchinsonandy at gcc dot gnu dot org changed: What|Removed |Added -

[Bug testsuite/33782] FAIL: gcc.c-torture/compile/limits-stringlit.c (test for excess errors)

2008-04-12 Thread hutchinsonandy at gcc dot gnu dot org
--- Comment #3 from hutchinsonandy at gcc dot gnu dot org 2008-04-12 15:46 --- Fixed 4.4 -- hutchinsonandy at gcc dot gnu dot org changed: What|Removed |Added

[Bug ada/24880] [4.1/4.2/4.3/4.4 regression] Conversion of user-defined integer type with Size fixed causes crashes

2008-04-12 Thread sam at gcc dot gnu dot org
--- Comment #4 from sam at gcc dot gnu dot org 2008-04-12 15:40 --- Confirmed on 4.4.0: +===GNAT BUG DETECTED==+ | 4.4.0 20080412 (experimental) (i686-pc-linux-gnu) Storage_Error stack overflow (or erroneous memory access)| | Error

[Bug testsuite/34894] Some compile tests require trampolines even when the target sets no_trampolines

2008-04-12 Thread hutchinsonandy at gcc dot gnu dot org
--- Comment #3 from hutchinsonandy at gcc dot gnu dot org 2008-04-12 15:39 --- Fixed 4.4. -- hutchinsonandy at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/34916] [4.3/4.4 Regression] gcc.c-torture/execute/pr27364.c fails with -O1, -O2 and -Os

2008-04-12 Thread hutchinsonandy at gcc dot gnu dot org
--- Comment #13 from hutchinsonandy at gcc dot gnu dot org 2008-04-12 15:38 --- Fixed 4.3 and 4.4 -- hutchinsonandy at gcc dot gnu dot org changed: What|Removed |Added

[Bug testsuite/35005] New testcase execute/20071211-1.c assumes 32 bit integers

2008-04-12 Thread hutchinsonandy at gcc dot gnu dot org
--- Comment #3 from hutchinsonandy at gcc dot gnu dot org 2008-04-12 15:32 --- Fixed 4.4 -- hutchinsonandy at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/35872] [4.3 regression] incorrect code for 32bit multiplication by constant

2008-04-12 Thread hutchinsonandy at gcc dot gnu dot org
--- Comment #7 from hutchinsonandy at gcc dot gnu dot org 2008-04-12 15:28 --- Fixed 4.3 and 4.4 -- hutchinsonandy at gcc dot gnu dot org changed: What|Removed |Added

Building newlib-1.15.0 with gcc-4.3.0 for arm-elf

2008-04-12 Thread Mariusz Janiak
Hi, I have problem during compilation of the newlib-1.15.0 using gcc-4.3.0. Target is arm-elf. The exact version of GCC, the system type, the options given when GCC was configured/built: Target: arm-elf Configured with: ../gcc-4.3.0/configure --target=arm-elf --prefix=/opt/gnuarm-4.3.0 --enab

[Bug middle-end/35519] COMBINE repeating same matches and can SEG fault

2008-04-12 Thread hutchinsonandy at gcc dot gnu dot org
--- Comment #7 from hutchinsonandy at gcc dot gnu dot org 2008-04-12 15:27 --- Fixed 4.3 and 4.4 -- hutchinsonandy at gcc dot gnu dot org changed: What|Removed |Added

[Bug ada/24079] Ada FE ICE on protected procedure with default argument (invalid?)

2008-04-12 Thread sam at gcc dot gnu dot org
--- Comment #3 from sam at gcc dot gnu dot org 2008-04-12 15:08 --- This appears to be fixed in SVN trunk (4.4.0). -- sam at gcc dot gnu dot org changed: What|Removed |Added --

[Bug ada/23187] MAXPATHLEN usage in gcc/ada/*.c

2008-04-12 Thread sam at gcc dot gnu dot org
--- Comment #9 from sam at gcc dot gnu dot org 2008-04-12 14:44 --- Alfred, any news? -- sam at gcc dot gnu dot org changed: What|Removed |Added CC|

[Bug ada/22387] Ada compiler crash when inheriting from a record with custom layout

2008-04-12 Thread sam at gcc dot gnu dot org
-- sam at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |sam at gcc dot gnu dot org |dot org

[Bug ada/18680] pragma Linker_Section problems

2008-04-12 Thread sam at gcc dot gnu dot org
-- sam at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |sam at gcc dot gnu dot org |dot org

[Bug ada/18680] pragma Linker_Section problems

2008-04-12 Thread sam at gcc dot gnu dot org
--- Comment #3 from sam at gcc dot gnu dot org 2008-04-12 12:16 --- With current GCC 4.4.0 (20080411), Data_2 is correctly placed into .eeprom: % readelf test.o Section Headers: [Nr] Name TypeAddr OffSize ES Flg Lk Inf Al [...] [ 4] .eeprom

[Bug c++/35914] New: missing int std::abs(int)

2008-04-12 Thread l dot jirkovsky at gmail dot com
It seems that there is missing int std::abs(int) in gcc 4.3.0. System is Archlinux current. Example output(from enblend cvs): ../../include/vigra/imageiteratoradapter.hxx:532: error: call of overloaded ‘abs(int&)’ is ambiguous /usr/lib/gcc/i686-pc-linux-gnu/4.3.0/../../../../include/c++/4.3.0/cmat

[Bug fortran/35476] Accepts invalid: USE/host association of generics with same specifics

2008-04-12 Thread burnus at gcc dot gnu dot org
--- Comment #5 from burnus at gcc dot gnu dot org 2008-04-12 10:33 --- > Where are we at with the J3 discussion? Sun requested a formal interpretation: http://j3-fortran.org/pipermail/j3/2008-March/001207.html Read on there. At some point there will be a formal reply by J3; if textual

[Bug fortran/35913] New: INTRINISIC vs. host-associated procedures (check conformance)

2008-04-12 Thread burnus at gcc dot gnu dot org
This is in a way a follow up to PR 35476. This PR is a reminder that we should check whether gfortran behaves correctly or not; the thread became twisted enough and contains too many similar but different test cases that I could not quickly see this. http://groups.google.com/group/comp.lang.fortra

[Bug c/35744] [4.1/4.2/4.3 regression] ICE attributes for invalid types

2008-04-12 Thread reichelt at gcc dot gnu dot org
--- Comment #3 from reichelt at gcc dot gnu dot org 2008-04-12 09:23 --- Fixed on mainline. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added Su

[Bug ada/18302] ACATS test c953002 (and others) hangs

2008-04-12 Thread aaronavay62 at aaronwl dot com
--- Comment #18 from aaronavay62 at aaronwl dot com 2008-04-12 07:11 --- (In reply to comment #17) > OK, but sweeping the problem under the rug is not the solution on mainline. I'm not advocating making these failures disappear; I'd just prefer they FAIL rather than hanging, which disi