[Bug ada/52033] Compiler assertion, apparently due to incomplete type

2012-01-28 Thread garynot at comcast dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52033 --- Comment #1 from Gary Barnes 2012-01-28 23:39:32 UTC --- Created attachment 26496 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26496 the gpr file used in the example

[Bug ada/52033] New: Compiler assertion, apparently due to incomplete type

2012-01-28 Thread garynot at comcast dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52033 Bug #: 52033 Summary: Compiler assertion, apparently due to incomplete type Classification: Unclassified Product: gcc Version: 4.5.3 Status: UNCONFIRMED Severity: normal

[Bug ada/51940] Ada.Finalization of passed function return value skipped if exception raised in routine

2012-01-23 Thread garynot at comcast dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51940 --- Comment #4 from Gary Barnes 2012-01-24 06:05:59 UTC --- How do I report it to AdaCore? Their web site has lots of marketing stuff but nothing about reporting bugs. Ditto for the Libre site. So there are two GNAT's in the world? Do they ev

[Bug ada/51940] Ada.Finalization of passed function return value skipped if exception raised in routine

2012-01-22 Thread garynot at comcast dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51940 --- Comment #2 from Gary Barnes 2012-01-23 00:23:31 UTC --- Created attachment 26418 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26418 gcc -v output, gnat make command, copy of the .gpr file

[Bug ada/51940] New: Ada.Finalization of passed function return value skipped if exception raised in routine

2012-01-21 Thread garynot at comcast dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51940 Bug #: 51940 Summary: Ada.Finalization of passed function return value skipped if exception raised in routine Classification: Unclassified Product: gcc Version: 4.5.3

[Bug ada/51690] New: Ada.Finalization with pointer field without explicit initialization confuses compiler

2011-12-27 Thread garynot at comcast dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51690 Bug #: 51690 Summary: Ada.Finalization with pointer field without explicit initialization confuses compiler Classification: Unclassified Product: gcc Version: 4.5.3 S

[Bug ada/50300] New: Error message incomplete and points to the wrong place. "premature usage of incomplete type"

2011-09-05 Thread garynot at comcast dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50300 Bug #: 50300 Summary: Error message incomplete and points to the wrong place. "premature usage of incomplete type" Classification: Unclassified Product: gcc Version: 4.5.1

[Bug ada/50292] compiler bug box - pl-io.ads

2011-09-04 Thread garynot at comcast dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50292 --- Comment #2 from Gary Barnes 2011-09-05 04:10:32 UTC --- gcc \ -c \ -gnata \ -gnatE \ -fstack-check \ -gnatef \ -gnatf \ -gnatm50 \ -gnatn \ -gnato \ -gnatU \ -gnatwa \ -gnatwe \ -gnatwi \ -gnatwj \ -gnatwK \ -gnatwl \ -Wuninitialized \ -gnatV

[Bug ada/50292] compiler bug box - pl-io.ads

2011-09-04 Thread garynot at comcast dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50292 --- Comment #1 from Gary Barnes 2011-09-05 04:09:32 UTC --- Created attachment 25192 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=25192 gnatchop file containing the source gnatchop format file with the source code causing the bug box. gc

[Bug ada/50292] New: compiler bug box - pl-io.ads

2011-09-04 Thread garynot at comcast dot net
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50292 Bug #: 50292 Summary: compiler bug box - pl-io.ads Classification: Unclassified Product: gcc Version: 4.5.1 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug ada/23390] New: abstract function in private part not overloading previous function is not allowed

2005-08-14 Thread garynot at comcast dot net
new Onee.Two (3); begin Ada.Text_Io.Put_Line ("Start"); declare I1 : Twoo.Type2_T := Twoo.Init; I2 : Twoo.Type2_T := Twoo.Func (I1); begin Ada.Text_Io.Put_Line ("I1" & Integer'Image(I1'Size)); Ada.Text_Io.Put_Line ("I2" & Integer'Image(I2'Size)); end; Ada.Text_Io.Put_Line ("Finish"); end Three; -- -- Summary: abstract function in private part not overloading previous function is not allowed Product: gcc Version: 4.0.1 Status: UNCONFIRMED Severity: normal Priority: P2 Component: ada AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: garynot at comcast dot net CC: gcc-bugs at gcc dot gnu dot org GCC build triplet: i686-pc-cygwin http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23390

[Bug ada/23389] New: subtype declared in generic child can't be used, same subtype elsewhere works

2005-08-14 Thread garynot at comcast dot net
package Twoo is new Onee.Two (3); begin Ada.Text_Io.Put_Line ("Start"); declare I1 : Onee.Type_T := Onee.Init; begin Ada.Text_Io.Put_Line ("I1" & Integer'Image(I1'Size)); end; declare I2a : Twoo.Subtype_T := Twoo.Init;